diff options
Diffstat (limited to '')
-rw-r--r-- | source/OSSupport/File.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/OSSupport/File.h b/source/OSSupport/File.h index d16784236..f3d21d450 100644 --- a/source/OSSupport/File.h +++ b/source/OSSupport/File.h @@ -46,6 +46,12 @@ Usage: class cFile { public: + #ifdef _WIN32 + static const char PathSeparator = '\\'; + #else + static const char PathSeparator = '/'; + #endif + /// The mode in which to open the file enum EMode { |