diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-02-23 19:29:15 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2021-02-23 19:29:15 +0100 |
| commit | 210197d07955e760c031e05d1cc79689290335dc (patch) | |
| tree | ada0510f53d595f32451efa5b93d8b1068c08401 /ui/single/resources-cfg.rs | |
| parent | 26870ae12ede1a70ca5685a7c0e0113c6bed58dd (diff) | |
Remove flags, updates UI tests
Diffstat (limited to 'ui/single/resources-cfg.rs')
| -rw-r--r-- | ui/single/resources-cfg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/single/resources-cfg.rs b/ui/single/resources-cfg.rs index 2ba65a0..c11d2ba 100644 --- a/ui/single/resources-cfg.rs +++ b/ui/single/resources-cfg.rs @@ -43,14 +43,14 @@ mod app { } #[init(resources = [o1, o4, o5, o6, s3])] - fn init(c: init::Context) -> init::LateResources { + fn init(c: init::Context) -> (init::LateResources, init::Monotonics) { c.resources.o1; c.resources.o4; c.resources.o5; c.resources.o6; c.resources.s3; - init::LateResources {} + (init::LateResources {}, init::Monotonics()) } #[idle(resources = [o2, &o4, s1, &s3])] |
