Skip to content

Commit 17fd40a

Browse files
committedDec 11, 2023
Fixed windows left alt support
1 parent 6ba1806 commit 17fd40a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/game.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ Trying to connect to {state.config.connect_address}.
345345
let event = InputEventKey(event)
346346
# Left alt support. raw_code is an enu specific addition
347347
if (host_os == "macosx" and event.raw_code == 58) or
348-
(host_os == "windows" and event.raw_code == 312) or
348+
(host_os == "windows" and event.raw_code == 56) or
349349
(host_os == "linux" and event.raw_code == 65513):
350350

351351
if event.pressed:

0 commit comments

Comments
 (0)