diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-10-01 20:14:07 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-10-01 20:14:07 +0200 |
| commit | 9d2598dc071882a94b813ab1d9ddf49092546257 (patch) | |
| tree | d2f80d17a0a23c6c1b9f1f2d320617bc0406407a /ui/single/resources-cfg.rs | |
| parent | e7f0d9c3e3fad77dace2ce63af02559fda46cb73 (diff) | |
Fixing test errors
Diffstat (limited to 'ui/single/resources-cfg.rs')
| -rw-r--r-- | ui/single/resources-cfg.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/single/resources-cfg.rs b/ui/single/resources-cfg.rs index df7ac80..bcb7120 100644 --- a/ui/single/resources-cfg.rs +++ b/ui/single/resources-cfg.rs @@ -41,12 +41,14 @@ const APP: () = { } #[init(resources = [o1, o4, o5, o6, s3])] - fn init(c: init::Context) { + fn init(c: init::Context) -> init::LateResources { c.resources.o1; c.resources.o4; c.resources.o5; c.resources.o6; c.resources.s3; + + init::LateResources {} } #[idle(resources = [o2, &o4, s1, &s3])] |
