Fix panic when calling runGraphics in main
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kayomn 2022-10-04 22:10:28 +01:00
parent 95f48b28c7
commit fbd79b5b41
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const sys = @import("./sys.zig");
/// Entry point. /// Entry point.
/// ///
pub fn main() anyerror!void { pub fn main() anyerror!void {
return nosuspend sys.runGraphics(anyerror, run); return nosuspend await async sys.runGraphics(anyerror, run);
} }
test { test {