mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -77,6 +77,8 @@ int NETWORK_init(void)
|
|||||||
backends[i].IsInit = backends[i].Init();
|
backends[i].IsInit = backends[i].Init();
|
||||||
any |= backends[i].IsInit;
|
any |= backends[i].IsInit;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
UNUSED(i);
|
||||||
#endif
|
#endif
|
||||||
return any;
|
return any;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user