mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 09:39:43 +01:00
Fix warning emitted by GCC 4.8
This commit is contained in:
parent
57edcf8e27
commit
f85622b7e9
1 changed files with 2 additions and 2 deletions
|
@ -11,11 +11,11 @@ scriptclass::scriptclass()
|
|||
//Start SDL
|
||||
|
||||
//Init
|
||||
for (int i = 0; i < 500; i++)
|
||||
for (int init = 0; init < 500; init++)
|
||||
{
|
||||
commands.push_back(std::string());
|
||||
}
|
||||
for (int i = 0; i < 40; i++)
|
||||
for (int init = 0; init < 40; init++)
|
||||
{
|
||||
words.push_back(std::string());
|
||||
txt.push_back(std::string());
|
||||
|
|
Loading…
Reference in a new issue