[Scummvm-cvs-logs] scummvm master -> 98edaa799ed16d42992d3273fd80e46d9a5634b6

lordhoto lordhoto at gmail.com
Sat Feb 13 00:08:12 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
98edaa799e SCI: Make variable name in line with our guidelines.


Commit: 98edaa799ed16d42992d3273fd80e46d9a5634b6
    https://github.com/scummvm/scummvm/commit/98edaa799ed16d42992d3273fd80e46d9a5634b6
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2016-02-13T00:06:27+01:00

Commit Message:
SCI: Make variable name in line with our guidelines.

(cherry picked from commit 7d7c36b5933d1e777e1246c8fe84a3c2379f082d)

Changed paths:
    engines/sci/event.cpp



diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp
index 126c6f2..c260e23 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;






More information about the Scummvm-git-logs mailing list