Skip to content
Snippets Groups Projects
Verified Commit 9faaed5d authored by Louis's avatar Louis :fire:
Browse files

Remove default resolution scale

parent 263bfac0
No related branches found
No related tags found
No related merge requests found
Pipeline #173 passed with stages
in 3 minutes
......@@ -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
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment