|
From: Tapio V. <aa...@us...> - 2009-12-11 12:42:24
|
Module: performous
Branch: dance
Commit: f0115ff02ab2faae17ecc39145d9c2a58861f0e5
Author: Miguel Sánchez de León Peque <miguel@vostro1520.(none)>
Date: Wed Nov 25 17:28:44 2009 +0100
Little change for testing GIT
---
game/screen_intro.cc | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/game/screen_intro.cc b/game/screen_intro.cc
index c48e9b6..e8a9acc 100644
--- a/game/screen_intro.cc
+++ b/game/screen_intro.cc
@@ -29,6 +29,11 @@ void ScreenIntro::manageEvent(SDL_Event event) {
else if (key == SDLK_s) sm->activateScreen("Songs");
else if (key == SDLK_c) sm->activateScreen("Configuration");
else if (key == SDLK_p) sm->activateScreen("Practice");
+
+ else if (key == SDLK_LEFT) {
+ sm->activateScreen("Practice");
+ }
+
else if (key == SDLK_SPACE || key == SDLK_PAUSE) m_audio.togglePause();
} else if (event.type == SDL_JOYBUTTONDOWN) {
int button = event.jbutton.button;
|