diff options
author | Ladislav Zezula <zezula@volny.cz> | 2021-03-31 17:40:00 +0200 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2021-03-31 17:40:00 +0200 |
commit | 48f26f9f75a840a31b86a245f974009edf6d90bf (patch) | |
tree | d28b9cd9a884ddbf7c89de7170c638e8a9230e27 /test | |
parent | 804b26bb85ddfe1363a315ab938065c9549587ae (diff) |
Linux fix
Diffstat (limited to 'test')
-rw-r--r-- | test/StormTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index 9a7724d..0c1aea4 100644 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -51,7 +51,7 @@ typedef struct _LINE_INFO {
LONG nLinePos;
DWORD nLineLen;
- char * szLine;
+ const char * szLine;
} LINE_INFO, *PLINE_INFO;
//------------------------------------------------------------------------------
@@ -63,7 +63,7 @@ static const TCHAR szListFileDir[] = { '1', '9', '9', '5', ' ', '-', ' ', 'T', ' #endif
#ifdef STORMLIB_LINUX
-#define WORK_PATH_ROOT "/media/ladik/MPQs"
+#define WORK_PATH_ROOT "/media/ladik/CascStorages/MPQs"
static const TCHAR szListFileDir[] = { '1', '9', '9', '5', ' ', '-', ' ', 'T', 'e', 's', 't', ' ', 'M', 'P', 'Q', 's', '\\', 'l', 'i', 's', 't', 'f', 'i', 'l', 'e', 's', '-', (TCHAR)0xe6, (TCHAR)0x96, (TCHAR)0xB0, (TCHAR)0xE5, (TCHAR)0xBB, (TCHAR)0xBA, (TCHAR)0xE6, (TCHAR)0x96, (TCHAR)0x87, (TCHAR)0xE4, (TCHAR)0xBB, (TCHAR)0xB6, (TCHAR)0xE5, (TCHAR)0xA4, (TCHAR)0xB9, 0 };
#endif
|