From 809149c4379ff5b438a686fb55cd860f264827d1 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Sun, 10 Jan 2010 09:50:14 +0000 Subject: [PATCH] Add feedback for the 'mouseflip' and 'shakey' commands. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@9086 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/keybind.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/keybind.c b/src/keybind.c index a6ecece5f..746d3e02c 100644 --- a/src/keybind.c +++ b/src/keybind.c @@ -2465,10 +2465,12 @@ void kf_ToggleMouseInvert( void ) if(getInvertMouseStatus()) { setInvertMouseStatus(false); + CONPRINTF(ConsoleString,(ConsoleString,_("Vertical rotation direction: Normal"))); } else { setInvertMouseStatus(true); + CONPRINTF(ConsoleString,(ConsoleString,_("Vertical rotation direction: Flipped"))); } } // -------------------------------------------------------------------------- @@ -2477,10 +2479,12 @@ void kf_ToggleShakeStatus( void ) if(getShakeStatus()) { setShakeStatus(false); + CONPRINTF(ConsoleString,(ConsoleString,_("Screen shake when things die: Off"))); } else { setShakeStatus(true); + CONPRINTF(ConsoleString,(ConsoleString,_("Screen shake when things die: On"))); } } // --------------------------------------------------------------------------