|
From: knittl <kn...@us...> - 2009-08-03 08:40:31
|
Module: performous
Branch: master
Commit: b96ec107fd1a4d178374648ba86809610877ca86
Author: Vincent Le Ligeour <yo...@us...>
Date: Sat Aug 1 16:31:16 2009 +0200
Fixed compilation errors
---
game/screen_practice.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/screen_practice.cc b/game/screen_practice.cc
index 38543d7..7a724c7 100644
--- a/game/screen_practice.cc
+++ b/game/screen_practice.cc
@@ -42,7 +42,7 @@ void ScreenPractice::manageEvent(SDL_Event event) {
}
}
input::Event input_event;
- while( drums->tryPollEvent(input_event) ) {
+ while( drums->tryPoll(input_event) ) {
if(input_event.type == input::Event::PRESS) {
switch(input_event.button) {
case 0:
|