|
From: Lasse Kärkkäi. <tr...@us...> - 2009-12-13 13:18:09
|
Module: performous
Branch: master
Commit: 5c8ea915ccc756ece96cbe5905203b940f57adad
Author: Lasse Karkkainen <tro...@tr...>
Date: Sun Dec 13 15:16:35 2009 +0200
USE_PORTMIDI fix
---
game/joystick.hh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/joystick.hh b/game/joystick.hh
index 13035e2..11cc2d7 100644
--- a/game/joystick.hh
+++ b/game/joystick.hh
@@ -11,7 +11,7 @@
#include "xtime.hh"
#include "configuration.hh"
-#ifdef HAVE_PORTMIDI
+#ifdef USE_PORTMIDI
#include "portmidi.hh"
#endif
@@ -150,7 +150,7 @@ namespace input {
bool pushEvent(SDL_Event);
}
-#ifdef HAVE_PORTMIDI
+#ifdef USE_PORTMIDI
class MidiDrums {
public:
MidiDrums(int devId);
|