diff --git a/game_core/Cargo.toml b/game_core/Cargo.toml index f787c4b33216fc12f1a6fca617d64fcc44a932be..48018ea667b9e8fd82b056492aa24e7903e1ed9c 100644 --- a/game_core/Cargo.toml +++ b/game_core/Cargo.toml @@ -5,6 +5,10 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[features] +default = [] +no-aspect = [] + [dependencies] anyhow.workspace = true log.workspace = true diff --git a/game_core/src/system/resources.rs b/game_core/src/system/resources.rs index 9ac587c915a74e3e59a82e30393655786d1701c4..cab2bb41f4b06c203ba2eafed356374142e0d811 100644 --- a/game_core/src/system/resources.rs +++ b/game_core/src/system/resources.rs @@ -11,8 +11,8 @@ impl Plugin for DefaultResourcesPlugin { let (width, height) = initial_size(); app.insert_resource(WindowDescriptor { - width: width * 3.0, - height: height * 3.0, + width, + height, resizable: true, title: String::from("Ludum Dare 51"), present_mode: PresentMode::AutoNoVsync,