mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-10 21:19:43 +01:00
Turn words
into an array instead of an std::vector
It never changes its size, so it doesn't need to be a dynamically-sized vector.
This commit is contained in:
parent
689af99220
commit
c7774a3eb9
2 changed files with 1 additions and 3 deletions
|
@ -11,8 +11,6 @@ scriptclass::scriptclass()
|
||||||
//Start SDL
|
//Start SDL
|
||||||
|
|
||||||
//Init
|
//Init
|
||||||
words.resize(40);
|
|
||||||
|
|
||||||
position = 0;
|
position = 0;
|
||||||
scriptdelay = 0;
|
scriptdelay = 0;
|
||||||
running = false;
|
running = false;
|
||||||
|
|
|
@ -49,7 +49,7 @@ public:
|
||||||
|
|
||||||
//Script contents
|
//Script contents
|
||||||
std::vector<std::string> commands;
|
std::vector<std::string> commands;
|
||||||
std::vector<std::string> words;
|
std::string words[40];
|
||||||
std::vector<std::string> txt;
|
std::vector<std::string> txt;
|
||||||
std::string scriptname;
|
std::string scriptname;
|
||||||
int position;
|
int position;
|
||||||
|
|
Loading…
Reference in a new issue