update to latest mach-core API

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-07-21 23:35:24 -07:00
parent 5cd698b12e
commit 835748a8c5
2 changed files with 15 additions and 36 deletions

View file

@ -39,7 +39,7 @@ pub fn main() !void {
defer app.deinit();
while (true) {
if (try app.update()) return;
if (try app.core.internal.update(&app)) return;
}
}