summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/throwshade/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/throwshade/src/lib.rs b/crates/throwshade/src/lib.rs
index 976f2ae..531fd5f 100644
--- a/crates/throwshade/src/lib.rs
+++ b/crates/throwshade/src/lib.rs
@@ -51,7 +51,7 @@ cfg_if::cfg_if! {
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub async fn main_js() {
- teleia::run(480, 270, Game::new).await;
+ teleia::run(480, 270, teleia::Options::NORESIZE, Game::new).await;
}
}
}