Fix TARGET_OS_IPHONE checks

This commit is contained in:
leo60228
2025-06-19 13:07:14 -04:00
committed by Ethan Lee
parent 65b024a9a3
commit 6ae4de1f94
5 changed files with 5 additions and 5 deletions

View File

@@ -1331,7 +1331,7 @@ static int PLATFORM_getOSDirectory(char* output, const size_t output_size)
}
SDL_snprintf(output, output_size, "%s/", externalStoragePath);
return 1;
#elif defined(TARGET_OS_IPHONE)
#elif TARGET_OS_IPHONE
// (ab)use SDL APIs to get the path to the Documents folder without needing Objective-C
const char* prefsPath = SDL_GetPrefPath("", "");
if (prefsPath == NULL)