mirror of
https://github.com/FunKey-Project/gpsp_libretro.git
synced 2026-03-26 22:02:42 +01:00
store saves and configs in gpsp dir
Don't like ROM dir littering. Still looking there for .sav and .cht files though.
This commit is contained in:
8
common.h
8
common.h
@@ -23,6 +23,14 @@
|
||||
#define ror(dest, value, shift) \
|
||||
dest = ((value) >> shift) | ((value) << (32 - shift)) \
|
||||
|
||||
#if defined(_WIN32) || defined(_WIN32_WCE)
|
||||
#define PATH_SEPARATOR "\\"
|
||||
#define PATH_SEPARATOR_CHAR '\\'
|
||||
#else
|
||||
#define PATH_SEPARATOR "/"
|
||||
#define PATH_SEPARATOR_CHAR '/'
|
||||
#endif
|
||||
|
||||
// These includes must be used before SDL is included.
|
||||
#ifdef ARM_ARCH
|
||||
|
||||
|
||||
Reference in New Issue
Block a user