From 5cf1f2cd41eb4d2700d8ba86412c57d380d3c8ed Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 16 Aug 2020 19:18:43 +0300 Subject: [PATCH] Update Path.hpp --- module/Library/System/Path.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/Library/System/Path.hpp b/module/Library/System/Path.hpp index 1e521a20..6286531b 100644 --- a/module/Library/System/Path.hpp +++ b/module/Library/System/Path.hpp @@ -607,11 +607,11 @@ public: */ static CharT Separator() { -#ifdef GMOD_OS_WINDOWS +#ifdef SQMOD_OS_WINDOWS return '\\'; #else return '/'; -#endif // GMOD_OS_WINDOWS +#endif // SQMOD_OS_WINDOWS } /* -------------------------------------------------------------------------------------------- @@ -619,11 +619,11 @@ public: */ static CharT PathSeparator() { -#ifdef GMOD_OS_WINDOWS +#ifdef SQMOD_OS_WINDOWS return ';'; #else return ':'; -#endif // GMOD_OS_WINDOWS +#endif // SQMOD_OS_WINDOWS } /* --------------------------------------------------------------------------------------------