From 36c808d619f742c97a949662e0fc6144a37d16d1 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 18 Jun 2009 20:44:19 -0400 Subject: Added levels --- mazeoflife.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mazeoflife.cpp') diff --git a/mazeoflife.cpp b/mazeoflife.cpp index 62551c7..7819ffd 100644 --- a/mazeoflife.cpp +++ b/mazeoflife.cpp @@ -16,6 +16,8 @@ int main(int argc, char *argv[]) /* Clean up on exit */ atexit(SDL_Quit); + SDL_WM_SetCaption("Maze Of Life", NULL); + /* * Initialize the display in a 640x480 8-bit palettized mode, * requesting a software surface @@ -26,7 +28,6 @@ int main(int argc, char *argv[]) exit(1); } - SDL_WM_SetCaption("Maze Of Life", NULL); SDL_EnableKeyRepeat(100, 50); State* state = new GameState(); -- cgit 1.4.1