Closed Chixpy closed 6 months ago
Hi. It's a simple mistake.
In line 37 of sdlkeycode.inc
SDLK_QUOTE = TSDL_KeyCode('\');
must be
SDLK_QUOTE = TSDL_KeyCode('''');
Backslash \ key is defined in line 67: SDLK_BACKSLASH = TSDL_KeyCode('\');
\
SDLK_BACKSLASH = TSDL_KeyCode('\');
Actually, SDLK_QUOTE was renamed three week ago to SDLK_APOSTROPHE, but I'think that it's for SDL3
Never noticed this, thanks!
Can you craft a quick patch/PR or should I do it?
Best regards
Done #137
Oh oops. Thanks for noticing and thanks for the PR.
Hi. It's a simple mistake.
In line 37 of sdlkeycode.inc
SDLK_QUOTE = TSDL_KeyCode('\');
must be
SDLK_QUOTE = TSDL_KeyCode('''');
Backslash
\
key is defined in line 67:SDLK_BACKSLASH = TSDL_KeyCode('\');
Actually, SDLK_QUOTE was renamed three week ago to SDLK_APOSTROPHE, but I'think that it's for SDL3