From 98edaa799ed16d42992d3273fd80e46d9a5634b6 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sat, 13 Feb 2016 00:04:52 +0100 Subject: SCI: Make variable name in line with our guidelines. (cherry picked from commit 7d7c36b5933d1e777e1246c8fe84a3c2379f082d) --- engines/sci/event.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp index 126c6f2d56..c260e23021 100644 --- a/engines/sci/event.cpp +++ b/engines/sci/event.cpp @@ -44,7 +44,7 @@ static const ScancodeRow scancodeAltifyRows[] = { { 0x2c, "ZXCVBNM,./" } }; -static const byte codepagemap_88591toDOS[0x80] = { +static const byte codePageMap88591ToDOS[0x80] = { '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x8x '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', // 0x9x '?', 0xad, 0x9b, 0x9c, '?', 0x9d, '?', 0x9e, '?', '?', 0xa6, 0xae, 0xaa, '?', '?', '?', // 0xAx @@ -265,7 +265,7 @@ SciEvent EventManager::getScummVMEvent() { return noEvent; // Convert 8859-1 characters to DOS (cp850/437) for // multilingual SCI01 games - input.character = codepagemap_88591toDOS[input.character & 0x7f]; + input.character = codePageMap88591ToDOS[input.character & 0x7f]; } if (scummVMKeycode == Common::KEYCODE_TAB) { input.character = SCI_KEY_TAB; -- cgit v1.2.3