Bugfix: inverted release and debug

This commit is contained in:
Jordy Ruiz 2018-10-31 18:02:01 +01:00
parent 055cdc87d4
commit 1b1cf5d312

View file

@ -2434,9 +2434,9 @@ int main(int argc, const char **argv) // ignore_convention
for(int i = 1; i < argc; i++) // ignore_convention
{
#ifdef CONF_RELEASE
if(str_comp("-s", argv[i]) == 0 || str_comp("--silent", argv[i]) == 0) // ignore_convention
#else
if(!(str_comp("-c", argv[i]) == 0 || str_comp("--console", argv[i]) == 0)) // ignore_convention
#else
if(str_comp("-s", argv[i]) == 0 || str_comp("--silent", argv[i]) == 0) // ignore_convention
#endif
{
FreeConsole();