From 1a70cee6a6e59290819f516736bb3123f232e342 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 2 Mar 2012 02:04:43 +0100 Subject: MORTEVIELLE: Silent a bunch of GCC warnings and errors --- engines/mortevielle/mouse.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/mortevielle/mouse.cpp') diff --git a/engines/mortevielle/mouse.cpp b/engines/mortevielle/mouse.cpp index d607b0597b..9baae57eb6 100644 --- a/engines/mortevielle/mouse.cpp +++ b/engines/mortevielle/mouse.cpp @@ -86,7 +86,7 @@ void hideMouse() { if (mouse_shwn == 0) { bool imp = odd(y_s); int j = p_o_s; - switch (_currGraphicalDevice) { + switch (g_currGraphicalDevice) { case MODE_CGA: { int k = 0; j = ((uint)y_s >> 1) * 80 + ((uint)x_s >> 2); @@ -183,7 +183,7 @@ void showMouse() { j = p_o_s; imp = odd(y_s); i = x_s & 7; - switch (_currGraphicalDevice) { + switch (g_currGraphicalDevice) { case MODE_CGA: k = 0; j = ((uint)y_s >> 1) * 80 + ((uint)x_s >> 2); @@ -418,7 +418,7 @@ void moveMouse(bool &funct, char &key) { cy = 8; break; case '\23': - _soundOff = !_soundOff; + g_soundOff = !g_soundOff; return; break; case '\26': -- cgit v1.2.3