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:
notaz
2011-09-07 23:45:45 +03:00
parent a88b04319e
commit d0944fc942
5 changed files with 58 additions and 41 deletions

View File

@@ -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