Adjust SMap path formatting

'/' is always a path separator, '\\' is implementation defined. The standard filesystem class takes care for OS regardless. Changed to standard separator.
This commit is contained in:
Kawe Mazidjatari 2023-03-21 00:20:22 +01:00
parent f66019fbf8
commit c29c2a9063

View File

@ -10,9 +10,9 @@
#define SIGDB_MINOR_VERSION 0x0 // Increment when SDK updates are released.
#ifdef DEDICATED
#define SIGDB_FILE "cfg\\server\\startup.bin"
#define SIGDB_FILE "cfg/server/startup.bin"
#else
#define SIGDB_FILE "cfg\\client\\startup.bin"
#define SIGDB_FILE "cfg/client/startup.bin"
#endif
class CSigCache