1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Fix warning emitted by GCC 4.8

This commit is contained in:
Ethan Lee 2020-01-12 03:56:39 -05:00
parent 57edcf8e27
commit f85622b7e9

View file

@ -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());