[Scummvm-cvs-logs] scummvm master -> e5281bc0dbdf38870da9c20badaffca0fb19924a

eriktorbjorn eriktorbjorn at telia.com
Wed Feb 12 23:00:43 CET 2014


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:
e5281bc0db AVALANCHE: Made comments ASCII friendly


Commit: e5281bc0dbdf38870da9c20badaffca0fb19924a
    https://github.com/scummvm/scummvm/commit/e5281bc0dbdf38870da9c20badaffca0fb19924a
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2014-02-12T13:58:58-08:00

Commit Message:
AVALANCHE: Made comments ASCII friendly

The comments I introduced earlier (previusly case labels) have been
changed to avoid non-ASCII characters. The descriptions were taken
from an ISO 8859-1 manual page.

Changed paths:
    engines/avalanche/help.cpp



diff --git a/engines/avalanche/help.cpp b/engines/avalanche/help.cpp
index c8b71e0..fd1513d 100644
--- a/engines/avalanche/help.cpp
+++ b/engines/avalanche/help.cpp
@@ -103,10 +103,10 @@ void Help::switchPage(byte which) {
 		case 254:
 			text = Common::String("Esc");
 			break;
-		case 214: // 'Ö'
+		case 214: // Latin capital letter O with diaeresis
 			text = Common::String(24);
 			break;
-		case 216: // 'Ø'
+		case 216: // Latin capital letter O with stroke
 			text = Common::String(25);
 			break;
 		default:






More information about the Scummvm-git-logs mailing list