WIN32: Make sure _argc and _argv are present with mingw

In mingw32 when __STRICT_ANSI__ is defined these variables doesn't get
defined
This commit is contained in:
Le Philousophe 2021-10-23 18:57:32 +02:00 committed by Filippos Karapetis
parent d1cc639318
commit 6ba11c8f93

View File

@ -22,6 +22,8 @@
// Disable symbol overrides so that we can use system headers.
#define FORBIDDEN_SYMBOL_ALLOW_ALL
// HACK: Mingw32 doesn't define _argc _argv in strict ANSI mode
#undef __STRICT_ANSI__
#include "common/scummsys.h"