Browse Source

platform: sdl: fix compiling

pull/2/head
Alibek Omarov 6 years ago
parent
commit
1b9bfd8906
  1. 3
      engine/platform/sdl/events.c

3
engine/platform/sdl/events.c

@ -172,7 +172,8 @@ SDLash_InputEvent @@ -172,7 +172,8 @@ SDLash_InputEvent
*/
static void SDLash_InputEvent( SDL_TextInputEvent input )
{
for( char *text = input.text; *text; text++ )
char *text;
for( text = input.text; *text; text++ )
{
int ch;

Loading…
Cancel
Save