mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-14 15:09:42 +01:00
Minor VS buildfix
This commit is contained in:
parent
9cfbd1ae51
commit
514d56ee20
1 changed files with 1 additions and 2 deletions
|
@ -56,7 +56,7 @@ static NetworkBackend backends[NUM_BACKENDS];
|
|||
|
||||
int NETWORK_init(void)
|
||||
{
|
||||
int32_t any = 0;
|
||||
int32_t i, any = 0;
|
||||
#define ASSIGN_BACKEND(name, index) \
|
||||
backends[index].Init = name##_init; \
|
||||
backends[index].Shutdown = name##_shutdown; \
|
||||
|
@ -72,7 +72,6 @@ int NETWORK_init(void)
|
|||
#endif
|
||||
#undef ASSIGN_BACKEND
|
||||
#if NUM_BACKENDS > 0
|
||||
int32_t i;
|
||||
for (i = 0; i < NUM_BACKENDS; i += 1)
|
||||
{
|
||||
backends[i].IsInit = backends[i].Init();
|
||||
|
|
Loading…
Reference in a new issue