mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 05:35:35 +00:00
fixed reversed const definitions
See http://hg.libsdl.org/SDL/file/8f71b590aff6/include/SDL_events.h#l49
This commit is contained in:
parent
52931f5c4e
commit
72dd621577
|
@ -2332,8 +2332,8 @@ namespace SDL2
|
|||
#region SDL_events.h
|
||||
|
||||
/* General keyboard/mouse state definitions. */
|
||||
public const byte SDL_PRESSED = 0;
|
||||
public const byte SDL_RELEASED = 1;
|
||||
public const byte SDL_PRESSED = 1;
|
||||
public const byte SDL_RELEASED = 0;
|
||||
|
||||
/* Default size is according to SDL2 default. */
|
||||
public const int SDL_TEXTEDITINGEVENT_TEXT_SIZE = 32;
|
||||
|
|
Loading…
Reference in a new issue