From c29c2a9063a5abae50d4b3613b6255c2b75296ff Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 21 Mar 2023 00:20:22 +0100 Subject: [PATCH] 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. --- r5dev/public/utility/sigcache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/public/utility/sigcache.h b/r5dev/public/utility/sigcache.h index 708c13c2..e17d16b9 100644 --- a/r5dev/public/utility/sigcache.h +++ b/r5dev/public/utility/sigcache.h @@ -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