mirror of https://github.com/pret/pokeemerald.git
Fix warning for extra parens (#646)
* Fix warning for extra parens * Committed too many files
This commit is contained in:
parent
4d938cb622
commit
fe1c14db76
|
@ -160,7 +160,7 @@ int main(int argc, char *argv[])
|
|||
// get filename
|
||||
for (arg=1; arg<argc; arg++)
|
||||
{
|
||||
if ((ARGV[0] != '-')) { argfile=ARGV; }
|
||||
if (ARGV[0] != '-') { argfile=ARGV; }
|
||||
if (strncmp("--silent", &ARGV[0], 7) == 0) { silent = 1; }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue