Merge pull request #31 from gered/master

fixed reversed const definitions
This commit is contained in:
Ethan Lee 2013-08-18 11:04:42 -07:00
commit 10e0d51f85

View File

@ -2332,8 +2332,8 @@ namespace SDL2
#region SDL_events.h #region SDL_events.h
/* General keyboard/mouse state definitions. */ /* General keyboard/mouse state definitions. */
public const byte SDL_PRESSED = 0; public const byte SDL_PRESSED = 1;
public const byte SDL_RELEASED = 1; public const byte SDL_RELEASED = 0;
/* Default size is according to SDL2 default. */ /* Default size is according to SDL2 default. */
public const int SDL_TEXTEDITINGEVENT_TEXT_SIZE = 32; public const int SDL_TEXTEDITINGEVENT_TEXT_SIZE = 32;