From 9182ade09a3a59d56299b465b094f1b6d6819f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mary=C5=84czak?= Date: Mon, 1 Jan 2024 22:16:32 +0100 Subject: [PATCH] Fix key labels scaling (#126) --- neothesia/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neothesia/src/main.rs b/neothesia/src/main.rs index 7cf1889c..709c19be 100644 --- a/neothesia/src/main.rs +++ b/neothesia/src/main.rs @@ -169,7 +169,7 @@ impl Neothesia { self.game_scene.update(&mut self.target, delta); self.target.text_renderer.update( - self.target.window_state.physical_size.into(), + self.target.window_state.logical_size.into(), &self.target.gpu, ); }