mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-25 03:04:15 +01:00
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
|
// get filename
|
||||||
for (arg=1; arg<argc; arg++)
|
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; }
|
if (strncmp("--silent", &ARGV[0], 7) == 0) { silent = 1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user