From fc351d4ea1aba41615996534272f18c636e14ea3 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Mon, 17 Feb 2025 17:39:40 -0500 Subject: Add NORESIZE flag --- Cargo.lock | 12 ++++++------ crates/throwshade/src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae0c249..45efb97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -676,7 +676,7 @@ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" [[package]] name = "directories" version = "6.0.0" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "dirs-sys", ] @@ -1020,7 +1020,7 @@ dependencies = [ [[package]] name = "glfw" version = "0.59.0" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "bitflags 1.3.2", "objc2 0.5.2", @@ -1062,7 +1062,7 @@ dependencies = [ [[package]] name = "gltf" version = "1.4.1" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "base64 0.13.1", "byteorder", @@ -1076,7 +1076,7 @@ dependencies = [ [[package]] name = "gltf-derive" version = "1.4.1" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "inflections", "proc-macro2", @@ -1087,7 +1087,7 @@ dependencies = [ [[package]] name = "gltf-json" version = "1.4.1" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "gltf-derive", "serde", @@ -3051,7 +3051,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "teleia" version = "0.1.0" -source = "git+https://github.com/lcolonq/teleia#f5d5478c0ca8e0a512c17206e78e077e7aac1e58" +source = "git+https://github.com/lcolonq/teleia#3c56138527b9b6baa6a6b23733cd54b4d281170f" dependencies = [ "bimap", "bitflags 2.8.0", 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; } } } -- cgit v1.2.3