diff options
Diffstat (limited to 'source/Macros.hpp')
-rw-r--r-- | source/Macros.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Macros.hpp b/source/Macros.hpp index 9f25cc4..b5d05fa 100644 --- a/source/Macros.hpp +++ b/source/Macros.hpp @@ -21,3 +21,9 @@ #else # define UNREACHABLE #endif + +#if _WIN32 +# define PLATFORM_PATH_STR "%ls" +#else +# define PLATFORM_PATH_STR "%s" +#endif |