X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ffilesys.h;h=8bf43c3faf3de62a6eeb861216890f904659c373;hb=9b907dd65a2c045d10605894fdaea504200e2be7;hp=b74b34f3da6cc41f272959ca06fa44552b65f29c;hpb=e09fec3373abcf836635dc33a95e9b9975058eb9;p=minetest.git diff --git a/src/filesys.h b/src/filesys.h index b74b34f3d..8bf43c3fa 100644 --- a/src/filesys.h +++ b/src/filesys.h @@ -24,6 +24,14 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include "exceptions.h" +#ifdef _WIN32 // WINDOWS +#define DIR_DELIM "\\" +#define DIR_DELIM_C '\\' +#else // POSIX +#define DIR_DELIM "/" +#define DIR_DELIM_C '/' +#endif + namespace fs {