Fixed some Xcode warnings

This commit is contained in:
Sam Lantinga
2022-07-17 09:07:04 -07:00
parent e3916993e2
commit cef1514b01
3 changed files with 13 additions and 7 deletions

View File

@@ -72,7 +72,6 @@ SDL_GetPrefPath(const char *org, const char *app)
{ @autoreleasepool
{
char *retval = NULL;
static SDL_bool shown = SDL_FALSE;
NSArray *array;
if (!app) {
@@ -94,10 +93,13 @@ SDL_GetPrefPath(const char *org, const char *app)
* between sessions. If you want your app's save data to
* actually stick around, you'll need to use iCloud storage.
*/
if (!shown)
{
shown = SDL_TRUE;
SDL_LogCritical(SDL_LOG_CATEGORY_SYSTEM, "tvOS does not have persistent local storage! Use iCloud storage if you want your data to persist between sessions.\n");
static SDL_bool shown = SDL_FALSE;
if (!shown)
{
shown = SDL_TRUE;
SDL_LogCritical(SDL_LOG_CATEGORY_SYSTEM, "tvOS does not have persistent local storage! Use iCloud storage if you want your data to persist between sessions.\n");
}
}
array = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);