Fix: Correction to suite style guidelines

This commit is contained in:
SnepOMatic (Rhew) 2025-11-12 21:06:47 +00:00
parent 4a000cc322
commit bd46a7e3dd
2 changed files with 3 additions and 2 deletions

View File

@ -38,4 +38,4 @@ bool NX_GetPathInfo(const char *path, SDL_PathInfo *info)
if (info) *info = tmp_info; if (info) *info = tmp_info;
return true; return true;
} }

View File

@ -2,8 +2,9 @@
#define NX_FILESYS_H #define NX_FILESYS_H
#include <SDL3/SDL_filesystem.h> #include <SDL3/SDL_filesystem.h>
#include "SDL_dupes.h"
#define SDL_GetPathInfo NX_GetPathInfo // Override broken SDL_GetPathInfo #define SDL_GetPathInfo NX_GetPathInfo // Override broken SDL_GetPathInfo
bool NX_GetPathInfo(const char *path, SDL_PathInfo *info); bool NX_GetPathInfo(const char *path, SDL_PathInfo *info);
#endif // NX_FILESYS_H #endif // NX_FILESYS_H