GDK build: fix project settings and API changes

This commit is contained in:
Daniel Ludwig
2024-07-24 10:19:55 +02:00
committed by Ozkan Sezer
parent ba8495c214
commit 0a678a654e
5 changed files with 11 additions and 13 deletions

View File

@@ -23,7 +23,9 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* System dependent filesystem routines */
extern "C" {
#include "../SDL_sysfilesystem.h"
}
#include "../../core/windows/SDL_windows.h"
#include <SDL3/SDL_hints.h>
@@ -133,5 +135,11 @@ char *SDL_SYS_GetPrefPath(const char *org, const char *app)
return folderPath;
}
/* TODO */
char *SDL_SYS_GetUserFolder(SDL_Folder folder)
{
SDL_Unsupported();
return NULL;
}
/* vi: set ts=4 sw=4 expandtab: */