summary refs log tree commit diff stats
path: root/hsnew.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hsnew.cpp')
-rw-r--r--hsnew.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/hsnew.cpp b/hsnew.cpp index 3bec468..8b752a6 100644 --- a/hsnew.cpp +++ b/hsnew.cpp
@@ -38,7 +38,6 @@ NewHighscoreState::NewHighscoreState(int level)
38 rntSpace.w = newName->w; 38 rntSpace.w = newName->w;
39 rntSpace.h = newName->h; 39 rntSpace.h = newName->h;
40 40
41 SDL_WM_SetCaption("Maze Of Life - New Highscore!", NULL);
42 SDL_EnableUNICODE(1); 41 SDL_EnableUNICODE(1);
43} 42}
44 43
@@ -99,7 +98,9 @@ void NewHighscoreState::input(SDL_keysym key)
99 changeState(new GameState()); 98 changeState(new GameState());
100 99
101 break; 100 break;
102 case 1: // Submit score to Global highscore list 101 case 1:
102 changeState(new SubmitHighscoreListState(hsname, level));
103
103 break; 104 break;
104 case 2: 105 case 2:
105 changeState(new TitleState()); 106 changeState(new TitleState());