mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-11 18:41:14 +00:00
10 lines
234 B
C
10 lines
234 B
C
#ifndef NX_FILESYS_H
|
|
#define NX_FILESYS_H
|
|
|
|
#include <SDL3/SDL_filesystem.h>
|
|
|
|
#define SDL_GetPathInfo NX_GetPathInfo // Override broken SDL_GetPathInfo
|
|
bool NX_GetPathInfo(const char *path, SDL_PathInfo *info);
|
|
|
|
#endif // NX_FILESYS_H
|