mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Suppress unused i
warning if NUM_BACKENDS
is 0
Else this warning would pop up if not compiling an OFFICIAL_BUILD.
This commit is contained in:
parent
146678aac4
commit
0028e314e4
1 changed files with 2 additions and 0 deletions
|
@ -77,6 +77,8 @@ int NETWORK_init(void)
|
|||
backends[i].IsInit = backends[i].Init();
|
||||
any |= backends[i].IsInit;
|
||||
}
|
||||
#else
|
||||
UNUSED(i);
|
||||
#endif
|
||||
return any;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue