|
@@ -91,22 +91,6 @@ int SDL_Error(SDL_errorcode code)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-#ifdef TEST_ERROR
|
|
|
-int main(int argc, char *argv[])
|
|
|
-{
|
|
|
- char buffer[BUFSIZ + 1];
|
|
|
-
|
|
|
- SDL_SetError("Hi there!");
|
|
|
- printf("Error 1: %s\n", SDL_GetError());
|
|
|
- SDL_ClearError();
|
|
|
- SDL_memset(buffer, '1', BUFSIZ);
|
|
|
- buffer[BUFSIZ] = 0;
|
|
|
- SDL_SetError("This is the error: %s (%f)", buffer, 1.0);
|
|
|
- printf("Error 2: %s\n", SDL_GetError());
|
|
|
- exit(0);
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
char *
|
|
|
SDL_GetErrorMsg(char *errstr, int maxlen)
|
|
|
{
|