android: Fixed missing error message for SDL_GetBasePath().

This commit is contained in:
Philipp Wiesemann 2017-06-04 23:15:27 +02:00
parent 248410dded
commit 52b7d0eb23

View File

@ -36,6 +36,7 @@ char *
SDL_GetBasePath(void) SDL_GetBasePath(void)
{ {
/* The current working directory is / on Android */ /* The current working directory is / on Android */
SDL_Unsupported();
return NULL; return NULL;
} }