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" ...@@ -5,6 +5,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
no-aspect = []
[dependencies] [dependencies]
anyhow.workspace = true anyhow.workspace = true
log.workspace = true log.workspace = true
......
...@@ -11,8 +11,8 @@ impl Plugin for DefaultResourcesPlugin { ...@@ -11,8 +11,8 @@ impl Plugin for DefaultResourcesPlugin {
let (width, height) = initial_size(); let (width, height) = initial_size();
app.insert_resource(WindowDescriptor { app.insert_resource(WindowDescriptor {
width: width * 3.0, width,
height: height * 3.0, height,
resizable: true, resizable: true,
title: String::from("Ludum Dare 51"), title: String::from("Ludum Dare 51"),
present_mode: PresentMode::AutoNoVsync, 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