We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abdfcd commit e8f525aCopy full SHA for e8f525a
1 file changed
apple/runtime/ios/rust/src/runner.rs
@@ -4,9 +4,9 @@ fn main(wrapp_path: String, persistent_path: String) -> anyhow::Result<()> {
4
let builder = webrogue_wasmtime::WrappVFSBuilder::from_file_path(wrapp_path)?;
5
6
return webrogue_wasmtime::run_aot_builder(
7
- webrogue_gfx_winit::SimpleWinitBuilder::default()?,
+ webrogue_gfx_winit::SimpleWinitBuilder::with_default_event_loop()?,
8
builder,
9
- &persistent_path.into(),
+ &std::path::PathBuf::from(persistent_path),
10
);
11
}
12
0 commit comments