diff --git a/src/SDL_error.c b/src/SDL_error.c index 9556317e1..fdd72e80c 100644 --- a/src/SDL_error.c +++ b/src/SDL_error.c @@ -231,6 +231,9 @@ SDL_Error(SDL_errorcode code) case SDL_EFSEEK: SDL_SetError("Error seeking in datastream"); break; + case SDL_UNSUPPORTED: + SDL_SetError("That operation is not supported"); + break; default: SDL_SetError("Unknown SDL error"); break;