Skip to content
Snippets Groups Projects
Verified Commit c3f57505 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: removed HDPI to avoid scaling issues

parent 1f196f7a
No related branches found
No related tags found
No related merge requests found
Pipeline #600 passed
...@@ -37,6 +37,7 @@ const SCREEN_SCALE: f32 = 10.0; ...@@ -37,6 +37,7 @@ const SCREEN_SCALE: f32 = 10.0;
/// The name of the font file to be used in the diagnostics. /// The name of the font file to be used in the diagnostics.
static FONT_NAME: &'static str = "RobotoMono-Bold.ttf"; static FONT_NAME: &'static str = "RobotoMono-Bold.ttf";
/// The size of the font in pixels to be used in the render.
const FONT_SIZE: u16 = 13; const FONT_SIZE: u16 = 13;
/// The base title to be used in the window. /// The base title to be used in the window.
...@@ -151,7 +152,6 @@ fn main() { ...@@ -151,7 +152,6 @@ fn main() {
.resizable() .resizable()
.position_centered() .position_centered()
.opengl() .opengl()
.allow_highdpi()
.build() .build()
.unwrap(); .unwrap();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment