diff options
Diffstat (limited to 'source/main.cpp')
-rw-r--r-- | source/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/main.cpp b/source/main.cpp index 0f51e27d8..4b498ae0a 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -137,12 +137,12 @@ int main( int argc, char **argv ) // Parse arguments for minidump flags: for (int i = 0; i < argc; i++) { - if (stricmp(argv[i], "/cdg") == 0) + if (_stricmp(argv[i], "/cdg") == 0) { // Add globals to the dump g_DumpFlags = (MINIDUMP_TYPE)(g_DumpFlags | MiniDumpWithDataSegs); } - else if (stricmp(argv[i], "/cdf") == 0) + else if (_stricmp(argv[i], "/cdf") == 0) { // Add full memory to the dump (HUUUGE file) g_DumpFlags = (MINIDUMP_TYPE)(g_DumpFlags | MiniDumpWithFullMemory); |