We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b924df commit 5283f73Copy full SHA for 5283f73
src/storage/SDL_storage.c
@@ -34,6 +34,9 @@ static TitleStorageBootStrap *titlebootstrap[] = {
34
static UserStorageBootStrap *userbootstrap[] = {
35
#ifdef SDL_STORAGE_STEAM
36
&STEAM_userbootstrap,
37
+#endif
38
+#ifdef SDL_STORAGE_PRIVATE
39
+ &PRIVATE_userbootstrap,
40
#endif
41
&GENERIC_userbootstrap,
42
NULL
src/storage/SDL_sysstorage.h
@@ -44,6 +44,7 @@ extern TitleStorageBootStrap GENERIC_titlebootstrap;
44
// Steam does not have title storage APIs
45
46
extern UserStorageBootStrap GENERIC_userbootstrap;
47
+extern UserStorageBootStrap PRIVATE_userbootstrap;
48
extern UserStorageBootStrap STEAM_userbootstrap;
49
50
extern SDL_Storage *GENERIC_OpenFileStorage(const char *path);
0 commit comments