Make Xbox GDK code public (and fix some GDK code rot) (#8844)

This commit is contained in:
chalonverse
2024-01-14 20:31:41 -08:00
committed by GitHub
parent 649556befa
commit 3a4ac15a27
37 changed files with 1550 additions and 1526 deletions

View File

@@ -224,3 +224,12 @@ Sint32 JNI_OnLoad(void *vm, void *reserved)
return -1; /* JNI_ERR */
}
#endif
#if defined(__XBOXONE__) || defined(__XBOXSERIES__)
char *SDL_GetUserFolder(SDL_Folder folder)
{
(void)folder;
SDL_Unsupported();
return NULL;
}
#endif