mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-02 02:15:58 -04:00
remove unused field; cleanup a dumb definition
This commit is contained in:
@@ -19,13 +19,10 @@
|
||||
|
||||
#include <climits>
|
||||
|
||||
const char WIN32_PATH_SEPARATOR = '\\';
|
||||
const char LINUX_PATH_SEPARATOR = '/';
|
||||
|
||||
#if defined(WIN32)
|
||||
const char PATH_SEPARATOR = WIN32_PATH_SEPARATOR;
|
||||
const char PATH_SEPARATOR = '\\';
|
||||
#elif defined(linux)
|
||||
const char PATH_SEPARATOR = LINUX_PATH_SEPARATOR;
|
||||
const char PATH_SEPARATOR = '/';
|
||||
#else
|
||||
#error unknown OS
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user