summaryrefslogtreecommitdiff
path: root/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'base.h')
-rw-r--r--base.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/base.h b/base.h
index 53e0a70..f6b0452 100644
--- a/base.h
+++ b/base.h
@@ -8,9 +8,11 @@
#if _WIN32
#include <windows.h>
#include <shlobj.h>
-#define PATH_SEPARATOR "\\"
+#define PATH_SEPARATOR '\\'
+#define PATH_SEPARATOR_STR "\\"
#else
-#define PATH_SEPARATOR "/"
+#define PATH_SEPARATOR '/'
+#define PATH_SEPARATOR_STR "/"
#endif
#include <stdbool.h>