Commit 52b7d0eb238db79deeccd4ccfc2ee412864c8afc

Philipp Wiesemann 2017-06-04T23:15:27

android: Fixed missing error message for SDL_GetBasePath().

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/filesystem/android/SDL_sysfilesystem.c b/src/filesystem/android/SDL_sysfilesystem.c
index cf26054..442d25c 100644
--- a/src/filesystem/android/SDL_sysfilesystem.c
+++ b/src/filesystem/android/SDL_sysfilesystem.c
@@ -36,6 +36,7 @@ char *
 SDL_GetBasePath(void)
 {
     /* The current working directory is / on Android */
+    SDL_Unsupported();
     return NULL;
 }