1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-31 09:57:14 +01:00

Update Path.hpp

This commit is contained in:
Sandu Liviu Catalin 2020-08-16 19:18:43 +03:00
parent a00ff9bf20
commit 5cf1f2cd41

View File

@ -607,11 +607,11 @@ public:
*/ */
static CharT Separator() static CharT Separator()
{ {
#ifdef GMOD_OS_WINDOWS #ifdef SQMOD_OS_WINDOWS
return '\\'; return '\\';
#else #else
return '/'; return '/';
#endif // GMOD_OS_WINDOWS #endif // SQMOD_OS_WINDOWS
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
@ -619,11 +619,11 @@ public:
*/ */
static CharT PathSeparator() static CharT PathSeparator()
{ {
#ifdef GMOD_OS_WINDOWS #ifdef SQMOD_OS_WINDOWS
return ';'; return ';';
#else #else
return ':'; return ':';
#endif // GMOD_OS_WINDOWS #endif // SQMOD_OS_WINDOWS
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------