diff options
author | tom <tom@ground-control> | 2015-05-08 08:05:57 -0500 |
---|---|---|
committer | tom <tom@ground-control> | 2015-05-08 08:05:57 -0500 |
commit | 84f94931fa790572b3ce57d72e290f0bd860c661 (patch) | |
tree | d570db2fe3ad3f835fdfaa99efecf0a79c84c4cb | |
parent | ffcee12acf3fe3f972f322c18b3203212682205d (diff) |
merging
-rw-r--r-- | src/list.cpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/list.cpp b/src/list.cpp index 2612d3e..ee0d14d 100644 --- a/src/list.cpp +++ b/src/list.cpp @@ -3,7 +3,7 @@ List::List(Window m) { int i; - for(i=0;i<5;i++) + for(i=0;i<10;i++) { Creature X = Creature(m,"img/Cbasic.png"); C.push_back(X); diff --git a/src/main.cpp b/src/main.cpp index 1e8424a..4290386 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,7 +22,7 @@ int main() L.Behavior();
main.Render();
- SDL_Delay(15);
+ SDL_Delay(10);
}
main.Destroy();
|