Skip to content

Commit c50baf5

Browse files
Update SDL_keycode.inc to 3.4.4
1 parent 27451cf commit c50baf5

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

units/SDL3.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ interface
100100
{$I SDL_audio.inc} // 3.4.2
101101
{$I SDL_sensor.inc} // 3.4.4
102102
{$I SDL_scancode.inc} // 3.4.4
103-
{$I SDL_keycode.inc} // 3.2.20
103+
{$I SDL_keycode.inc} // 3.4.4
104104
{$I SDL_mouse.inc} // 3.4.4
105105
{$I SDL_keyboard.inc} // 3.4.4
106106
{$I SDL_joystick.inc} // 3.4.4

units/SDL_keycode.inc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@
2626
* `SDLK_*` constant for those keys that do not generate characters.
2727
*
2828
* A special exception is the number keys at the top of the keyboard which map
29-
* to SDLK_0...SDLK_9 on AZERTY layouts.
29+
* by default to SDLK_0...SDLK_9 on AZERTY layouts.
3030
*
3131
* Keys with the `SDLK_EXTENDED_MASK` bit set do not map to a scancode or
32-
* unicode code point.
32+
* Unicode code point.
33+
*
34+
* Many common keycodes are listed below, but this list is not exhaustive.
3335
*
3436
* \since This datatype is available since SDL 3.2.0.
37+
*
38+
* \sa SDL_HINT_KEYCODE_OPTIONS
3539
}
3640
type
3741
PPSDL_Keycode = ^PSDL_Keycode;

0 commit comments

Comments
 (0)