1
0

Some code improvements

git-svn-id: http://mc-server.googlecode.com/svn/trunk@677 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
lapayo94@gmail.com
2012-07-16 19:20:37 +00:00
parent 520dee1a90
commit 86a991c5a8
77 changed files with 259 additions and 413 deletions

View File

@@ -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);