From 4a857b461cad473fbea266065695912f5351af8b Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sun, 23 Jul 2023 17:34:42 -0400 Subject: [PATCH] let ` set zoom to 0 --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index bbc2db7..45c28d9 100644 --- a/Program.cs +++ b/Program.cs @@ -311,7 +311,7 @@ public class Game : GameWindow { upTimer = Int64.MaxValue; } - if (input.IsKeyDown(Keys.D0)) { + if (input.IsKeyDown(Keys.D0) || input.IsKeyDown(Keys.GraveAccent)) { zoomLevel = 0f; }