From d63bdb3265f220439a0868eec030bbde31632aec Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sat, 5 Aug 2023 22:56:40 -0400 Subject: [PATCH] alt-P -> ctrl-P --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index ada0c1b..a4e94ed 100644 --- a/Program.cs +++ b/Program.cs @@ -518,7 +518,7 @@ public class Game : GameWindow { photoIndex -= 5; } - if (input.IsKeyPressed(Keys.P) && altIsDown) { + if (input.IsKeyPressed(Keys.P) && ctrlIsDown) { ExportPhotos(); }