|
From: Tapio V. <aa...@us...> - 2010-08-12 21:27:18
|
Module: performous
Branch: joinmenu
Commit: 23b96bb4e3356ae02cb32f6517295bba801369f6
Author: Tapio Vierros <tap...@gm...>
Date: Thu Aug 5 20:48:34 2010 +0300
Fix godmode button mapping.
---
game/joystick.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/joystick.cc b/game/joystick.cc
index 5053d99..ead308d 100644
--- a/game/joystick.cc
+++ b/game/joystick.cc
@@ -286,7 +286,7 @@ void readControllers(input::Instruments &instruments, fs::path const& file) {
else if(value == "yellow") mapping[id] = 2;
else if(value == "blue") mapping[id] = 3;
else if(value == "orange") mapping[id] = 4;
- else if(value == "starpower") mapping[id] = 5;
+ else if(value == "godmode") mapping[id] = 5;
else if(value == "select") mapping[id] = 8;
else if(value == "start") mapping[id] = 9;
else continue;
|