summaryrefslogtreecommitdiff
path: root/crates/throwshade/src/lib.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-02-17 17:39:40 -0500
committerLLLL Colonq <llll@colonq>2025-02-17 17:39:40 -0500
commitfc351d4ea1aba41615996534272f18c636e14ea3 (patch)
tree7678e4258114f60d4f1eb9e261f7643ec0e9b5c1 /crates/throwshade/src/lib.rs
parent4d0a8140130ebd0f46744b86eeb2a708657a942e (diff)
Add NORESIZE flag
Diffstat (limited to 'crates/throwshade/src/lib.rs')
-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;
}
}
}