summary refs log tree commit diff stats
path: root/mazeoflife.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 19:37:24 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 19:37:24 -0400
commit8c1f08f2133de108fd354dd07c65e0c24ecc1d38 (patch)
treed16d476ce82776a99d949234d0b8381223c7cc87 /mazeoflife.cpp
parent7b92903af52dbdf4b0dbfa10dc45345531d88595 (diff)
downloadmazeoflife-8c1f08f2133de108fd354dd07c65e0c24ecc1d38.tar.gz
mazeoflife-8c1f08f2133de108fd354dd07c65e0c24ecc1d38.tar.bz2
mazeoflife-8c1f08f2133de108fd354dd07c65e0c24ecc1d38.zip
Wrote Life solver
Diffstat (limited to 'mazeoflife.cpp')
-rw-r--r--mazeoflife.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mazeoflife.cpp b/mazeoflife.cpp index cbf1f1d..62551c7 100644 --- a/mazeoflife.cpp +++ b/mazeoflife.cpp
@@ -27,7 +27,7 @@ int main(int argc, char *argv[])
27 } 27 }
28 28
29 SDL_WM_SetCaption("Maze Of Life", NULL); 29 SDL_WM_SetCaption("Maze Of Life", NULL);
30 SDL_EnableKeyRepeat(150, 75); 30 SDL_EnableKeyRepeat(100, 50);
31 31
32 State* state = new GameState(); 32 State* state = new GameState();
33 33