summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/game.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 154a993b..0c64b727 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-2007-08-26 Eugenio Favalli <elvenprogrammer@gmail.com>
+2007-08-27 Eugenio Favalli <elvenprogrammer@gmail.com>
+
+ * src/game.cpp: Assigned unused emotions to Alt +/-. (Applyed a patch by
+ Quiche_on_a_leash).
+
+2007-08-26 Eugenio Favalli <elvenprogrammer@gmail.com>
* src/gui/updatewindow.cpp, src/main.cpp, tmw.cbp: Removed home dir
from config file to avoid encoding issues.
diff --git a/src/game.cpp b/src/game.cpp
index 4478adad..b53fbb8b 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -630,6 +630,8 @@ void Game::handleInput()
case SDLK_8: emotion = 8; break;
case SDLK_9: emotion = 9; break;
case SDLK_0: emotion = 10; break;
+ case SDLK_MINUS: emotion = 11; break;
+ case SDLK_EQUALS: emotion = 12; break;
default: emotion = 0; break;
}