bug #3739: handle %lu, %li and %ld in SDL_SetError.

This commit is contained in:
Ozkan Sezer 2017-10-29 14:15:00 +03:00
parent 5abd7d16d7
commit 926d803f83
2 changed files with 27 additions and 0 deletions

View file

@ -51,6 +51,7 @@ typedef struct SDL_error
unsigned char value_c;
#endif
int value_i;
long value_l;
double value_f;
char buf[ERR_MAX_STRLEN];
} args[ERR_MAX_ARGS];