[Scummvm-cvs-logs] SF.net SVN: scummvm:[48645] scummvm/trunk

salty-horse at users.sourceforge.net salty-horse at users.sourceforge.net
Mon Apr 12 23:21:07 CEST 2010


Revision: 48645
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48645&view=rev
Author:   salty-horse
Date:     2010-04-12 21:21:06 +0000 (Mon, 12 Apr 2010)

Log Message:
-----------
Apply patch #2982163 - CONFIG: Use HE keyword instead of HB for the Hebrew language

Modified Paths:
--------------
    scummvm/trunk/README
    scummvm/trunk/common/util.cpp
    scummvm/trunk/common/util.h
    scummvm/trunk/engines/agos/charset-fontdata.cpp
    scummvm/trunk/engines/agos/charset.cpp
    scummvm/trunk/engines/agos/detection_tables.h
    scummvm/trunk/engines/agos/res_snd.cpp
    scummvm/trunk/engines/agos/saveload.cpp
    scummvm/trunk/engines/agos/script_s1.cpp
    scummvm/trunk/engines/agos/script_s2.cpp
    scummvm/trunk/engines/agos/verb.cpp
    scummvm/trunk/engines/agos/vga_s2.cpp
    scummvm/trunk/engines/gob/detection.cpp
    scummvm/trunk/engines/gob/gob.cpp
    scummvm/trunk/engines/queen/command.cpp
    scummvm/trunk/engines/queen/display.cpp
    scummvm/trunk/engines/queen/graphics.cpp
    scummvm/trunk/engines/queen/input.cpp
    scummvm/trunk/engines/queen/journal.cpp
    scummvm/trunk/engines/queen/resource.cpp
    scummvm/trunk/engines/queen/talk.cpp
    scummvm/trunk/engines/scumm/detection_tables.h
    scummvm/trunk/engines/scumm/scumm-md5.h
    scummvm/trunk/engines/tinsel/config.cpp
    scummvm/trunk/engines/tinsel/detection.cpp
    scummvm/trunk/tools/md5table.c
    scummvm/trunk/tools/scumm-md5.txt

Modified: scummvm/trunk/README
===================================================================
--- scummvm/trunk/README	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/README	2010-04-12 21:21:06 UTC (rev 48645)
@@ -1052,7 +1052,7 @@
     fr  - French
     it  - Italian
     es  - Spanish
-    hb  - Hebrew
+    he  - Hebrew
     pl  - Polish
     ru  - Russian
 

Modified: scummvm/trunk/common/util.cpp
===================================================================
--- scummvm/trunk/common/util.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/common/util.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -116,7 +116,8 @@
 	{"fr", "French", FR_FRA},
 	{"de", "German", DE_DEU},
 	{"gr", "Greek", GR_GRE},
-	{"hb", "Hebrew", HB_ISR},
+	{"he", "Hebrew", HE_ISR},
+	{"hb", "Hebrew", HE_ISR}, // Deprecated
 	{"hu", "Hungarian", HU_HUN},
 	{"it", "Italian", IT_ITA},
 	{"jp", "Japanese", JA_JPN},

Modified: scummvm/trunk/common/util.h
===================================================================
--- scummvm/trunk/common/util.h	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/common/util.h	2010-04-12 21:21:06 UTC (rev 48645)
@@ -102,7 +102,7 @@
 	FR_FRA,
 	DE_DEU,
 	GR_GRE,
-	HB_ISR,
+	HE_ISR,
 	HU_HUN,
 	IT_ITA,
 	JA_JPN,

Modified: scummvm/trunk/engines/agos/charset-fontdata.cpp
===================================================================
--- scummvm/trunk/engines/agos/charset-fontdata.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/charset-fontdata.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -2370,7 +2370,7 @@
 		case Common::PL_POL:
 			src = polish_simonFont + (chr - 32) * 8;
 			break;
-		case Common::HB_ISR:
+		case Common::HE_ISR:
 			src = hebrew_simonFont + (chr - 32) * 8;
 			break;
 		case Common::ES_ESP:

Modified: scummvm/trunk/engines/agos/charset.cpp
===================================================================
--- scummvm/trunk/engines/agos/charset.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/charset.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -319,7 +319,7 @@
 	if (count != 0)
 		memset(dst, 0, count);
 
-	if (_language == Common::HB_ISR)
+	if (_language == Common::HE_ISR)
 		dst += width - 1; // For Hebrew, start at the right edge, not the left.
 
 	dst_org = dst;
@@ -328,7 +328,7 @@
 			dst_org += width * textHeight;
 			dst = dst_org;
 		} else if ((chr -= ' ') == 0) {
-			dst += (_language == Common::HB_ISR ? -6 : 6); // Hebrew moves to the left, all others to the right
+			dst += (_language == Common::HE_ISR ? -6 : 6); // Hebrew moves to the left, all others to the right
 		} else {
 			byte *img_hdr, *img;
 			uint i, img_width, img_height;
@@ -345,7 +345,7 @@
 				img = src + READ_LE_UINT16(img_hdr);
 			}
 
-			if (_language == Common::HB_ISR)
+			if (_language == Common::HE_ISR)
 				dst -= img_width - 1; // For Hebrew, move from right edge to left edge of image.
 			byte *cur_dst = dst;
 
@@ -371,7 +371,7 @@
 				cur_dst += width;
 			} while (--img_height);
 
-			if (_language != Common::HB_ISR) // Hebrew character movement is done higher up
+			if (_language != Common::HE_ISR) // Hebrew character movement is done higher up
 				dst += img_width - 1;
 		}
 	}
@@ -499,8 +499,8 @@
 		clearWindow(window);
 	} else if (c == 13 || c == 10) {
 		windowNewLine(window);
-	} else if ((c == 1 && _language != Common::HB_ISR) || (c == 8)) {
-		if (_language == Common::HB_ISR) {
+	} else if ((c == 1 && _language != Common::HE_ISR) || (c == 8)) {
+		if (_language == Common::HE_ISR) {
 			if (b >= 64 && b < 91)
 				width = _hebrewCharWidths [b - 64];
 
@@ -546,7 +546,7 @@
 			window->textRow--;
 		}
 
-		if (_language == Common::HB_ISR) {
+		if (_language == Common::HE_ISR) {
 			if (c >= 64 && c < 91)
 				width = _hebrewCharWidths [c - 64];
 			window->textColumnOffset -= width;

Modified: scummvm/trunk/engines/agos/detection_tables.h
===================================================================
--- scummvm/trunk/engines/agos/detection_tables.h	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/detection_tables.h	2010-04-12 21:21:06 UTC (rev 48645)
@@ -1672,7 +1672,7 @@
 	{ "tbllist",		GAME_TBLFILE,	"d198a80de2c59e4a0cd24b98814849e8", 711},
 	{ NULL, 0, NULL, 0}
 			},
-			Common::HB_ISR,
+			Common::HE_ISR,
 			Common::kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NONE
@@ -2148,7 +2148,7 @@
 	{ "tbllist",		GAME_TBLFILE,	"2082f8d02075e590300478853a91ffd9", 513},
 	{ NULL, 0, NULL, 0}
 			},
-			Common::HB_ISR,
+			Common::HE_ISR,
 			Common::kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NONE

Modified: scummvm/trunk/engines/agos/res_snd.cpp
===================================================================
--- scummvm/trunk/engines/agos/res_snd.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/res_snd.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -78,7 +78,7 @@
 		}
 		_skipVgaWait = true;
 	} else {
-		if (getGameType() == GType_SIMON2 && _subtitles && _language != Common::HB_ISR) {
+		if (getGameType() == GType_SIMON2 && _subtitles && _language != Common::HE_ISR) {
 			loadVoice(speech_id);
 			return;
 		}

Modified: scummvm/trunk/engines/agos/saveload.cpp
===================================================================
--- scummvm/trunk/engines/agos/saveload.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/saveload.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -608,13 +608,13 @@
 		lastSlot = slot;
 		if (slot < 10) {
 			showMessageFormat(" ");
-		} else if (_language == Common::HB_ISR) {
+		} else if (_language == Common::HE_ISR) {
 			lastSlot = (slot % 10) * 10;
 			lastSlot += slot / 10;
 		}
 
 		showMessageFormat("%d", lastSlot);
-		if (_language == Common::HB_ISR && !(slot % 10))
+		if (_language == Common::HE_ISR && !(slot % 10))
 			showMessageFormat("0");
 		showMessageFormat(".%s\n", dst);
 		dst += 18;
@@ -672,7 +672,7 @@
 	char *name;
 	bool b;
 	char buf[108];
-	int maxChar = (_language == Common::HB_ISR) ? 155: 128;
+	int maxChar = (_language == Common::HE_ISR) ? 155: 128;
 
 	_saveOrLoad = load;
 
@@ -711,7 +711,7 @@
 		window->textRow = result;
 
 		// init x offset with a 2 character savegame number + a period (18 pix)
-		if (_language == Common::HB_ISR) {
+		if (_language == Common::HE_ISR) {
 			window->textColumn = 3;
 			window->textColumnOffset = 6;
 		} else {
@@ -725,7 +725,7 @@
 		// now process entire savegame name to get correct x offset for cursor
 		_saveGameNameLen = 0;
 		while (name[_saveGameNameLen]) {
-			if (_language == Common::HB_ISR) {
+			if (_language == Common::HE_ISR) {
 				byte width = 6;
 				if (name[_saveGameNameLen] >= 64 && name[_saveGameNameLen] < 91)
 					width = _hebrewCharWidths [name[_saveGameNameLen] - 64];
@@ -770,7 +770,7 @@
 				goto restart;
 			}
 
-			if (_language == Common::HB_ISR) {
+			if (_language == Common::HE_ISR) {
 				if (i >= 128)
 					i -= 64;
 				else if (i >= 32)
@@ -788,7 +788,7 @@
 					_saveGameNameLen--;
 					m = name[_saveGameNameLen];
 
-					if (_language == Common::HB_ISR)
+					if (_language == Common::HE_ISR)
 						x = 8;
 					else
 						x = (name[_saveGameNameLen] == 'i' || name[_saveGameNameLen] == 'l') ? 1 : 8;
@@ -889,7 +889,7 @@
 	oldTextColor = window->textColor;
 	window->textColor = window->fillColor;
 
-	if (_language == Common::HB_ISR) {
+	if (_language == Common::HE_ISR) {
 		x = 128;
 	} else {
 		x += 120;

Modified: scummvm/trunk/engines/agos/script_s1.cpp
===================================================================
--- scummvm/trunk/engines/agos/script_s1.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/script_s1.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -319,7 +319,7 @@
 	case Common::PL_POL:
 		keyYes = Common::KEYCODE_t;
 		break;
-	case Common::HB_ISR:
+	case Common::HE_ISR:
 		keyYes = Common::KEYCODE_f;
 		break;
 	case Common::ES_ESP:
@@ -426,7 +426,7 @@
 		int j, k;
 
 		if (subObject->objectFlags & kOFNumber) {
-			if (_language == Common::HB_ISR) {
+			if (_language == Common::HE_ISR) {
 				j = subObject->objectFlagValue[getOffsetOfChild2Param(subObject, kOFNumber)];
 				k = (j % 10) * 10;
 				k += j / 10;

Modified: scummvm/trunk/engines/agos/script_s2.cpp
===================================================================
--- scummvm/trunk/engines/agos/script_s2.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/script_s2.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -417,7 +417,7 @@
 		int j, k;
 
 		if (subObject->objectFlags & kOFNumber) {
-			if (_language == Common::HB_ISR) {
+			if (_language == Common::HE_ISR) {
 				j = subObject->objectFlagValue[getOffsetOfChild2Param(subObject, kOFNumber)];
 				k = (j % 10) * 10;
 				k += j / 10;

Modified: scummvm/trunk/engines/agos/verb.cpp
===================================================================
--- scummvm/trunk/engines/agos/verb.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/verb.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -258,7 +258,7 @@
 		case Common::RU_RUS:
 			verb_prep_names = russian_verb_prep_names;
 			break;
-		case Common::HB_ISR:
+		case Common::HE_ISR:
 			verb_prep_names = hebrew_verb_prep_names;
 			break;
 		case Common::ES_ESP:
@@ -287,7 +287,7 @@
 		case Common::RU_RUS:
 			verb_names = russian_verb_names;
 			break;
-		case Common::HB_ISR:
+		case Common::HE_ISR:
 			verb_names = hebrew_verb_names;
 			break;
 		case Common::ES_ESP:
@@ -332,7 +332,7 @@
 
 	window->textColumn = x / 8;
 	window->textColumnOffset = x & 7;
-	if (_language == Common::HB_ISR && window->textColumnOffset != 0) {
+	if (_language == Common::HE_ISR && window->textColumnOffset != 0) {
 		window->textColumnOffset = 8 - window->textColumnOffset;
 		window->textColumn++;
 	}

Modified: scummvm/trunk/engines/agos/vga_s2.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga_s2.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/agos/vga_s2.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -89,7 +89,7 @@
 }
 
 void AGOSEngine::vc64_ifSpeech() {
-	if ((getGameType() == GType_SIMON2 && _subtitles && _language != Common::HB_ISR) ||
+	if ((getGameType() == GType_SIMON2 && _subtitles && _language != Common::HE_ISR) ||
 		!_sound->isVoiceActive()) {
 		vcSkipNextInstruction();
 	}

Modified: scummvm/trunk/engines/gob/detection.cpp
===================================================================
--- scummvm/trunk/engines/gob/detection.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/gob/detection.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -1881,7 +1881,7 @@
 			"lit",
 			"",
 			AD_ENTRY1s("intro.stk", "e0767783ff662ed93665446665693aef", 4371238),
-			HB_ISR,
+			HE_ISR,
 			kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NOSUBTITLES | GUIO_NOSPEECH
@@ -2317,7 +2317,7 @@
 			"fascination",
 			"VGA 3 disks edition",
 			AD_ENTRY1s("intro.stk", "d6e45ce548598727e2b5587a99718eba", 1055909),
-			HB_ISR,
+			HE_ISR,
 			kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NOSUBTITLES | GUIO_NOSPEECH
@@ -2485,7 +2485,7 @@
 			"gob3",
 			"",
 			AD_ENTRY1s("intro.stk", "904fc32032295baa3efb3a41f17db611", 178582),
-			HB_ISR,
+			HE_ISR,
 			kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NOSUBTITLES | GUIO_NOSPEECH

Modified: scummvm/trunk/engines/gob/gob.cpp
===================================================================
--- scummvm/trunk/engines/gob/gob.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/gob/gob.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -66,7 +66,7 @@
 	Common::EN_USA,
 	Common::NL_NLD,
 	Common::KO_KOR,
-	Common::HB_ISR,
+	Common::HE_ISR,
 	Common::PT_BRA,
 	Common::JA_JPN
 };
@@ -290,7 +290,7 @@
 	case Common::KO_KOR:
 		_global->_language = kLanguageKorean;
 		break;
-	case Common::HB_ISR:
+	case Common::HE_ISR:
 		_global->_language = kLanguageHebrew;
 		break;
 	case Common::PT_BRA:

Modified: scummvm/trunk/engines/queen/command.cpp
===================================================================
--- scummvm/trunk/engines/queen/command.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/command.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -140,7 +140,7 @@
 
 CmdText *CmdText::makeCmdTextInstance(uint8 y, QueenEngine *vm) {
 	switch (vm->resource()->getLanguage()) {
-	case Common::HB_ISR:
+	case Common::HE_ISR:
 		return new CmdTextHebrew(y, vm);
 	case Common::GR_GRE:
 		return new CmdTextGreek(y, vm);

Modified: scummvm/trunk/engines/queen/display.cpp
===================================================================
--- scummvm/trunk/engines/queen/display.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/display.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -967,7 +967,7 @@
 
 void Display::initFont() {
 	switch (_vm->resource()->getLanguage()) {
-	case Common::HB_ISR:
+	case Common::HE_ISR:
 		_font = _fontHebrew;
 		break;
 	case Common::RU_RUS:

Modified: scummvm/trunk/engines/queen/graphics.cpp
===================================================================
--- scummvm/trunk/engines/queen/graphics.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/graphics.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -514,7 +514,7 @@
 
 	// Hebrew strings are written from right to left and should be cut
 	// to lines in reverse
-	if (_vm->resource()->getLanguage() == Common::HB_ISR) {
+	if (_vm->resource()->getLanguage() == Common::HE_ISR) {
 		for (i = length - 1; i >= 0; i--) {
 			lineLength++;
 

Modified: scummvm/trunk/engines/queen/input.cpp
===================================================================
--- scummvm/trunk/engines/queen/input.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/input.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -74,7 +74,7 @@
 	case Common::IT_ITA:
 		_currentCommandKeys = _commandKeys[3];
 		break;
-	case Common::HB_ISR:
+	case Common::HE_ISR:
 		_currentCommandKeys = _commandKeys[4];
 		break;
 	case Common::ES_ESP:

Modified: scummvm/trunk/engines/queen/journal.cpp
===================================================================
--- scummvm/trunk/engines/queen/journal.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/journal.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -425,7 +425,7 @@
 		_panelTextY[_panelTextCount++] = y;
 	} else {
 		*p++ = '\0';
-		if (_vm->resource()->getLanguage() == Common::HB_ISR) {
+		if (_vm->resource()->getLanguage() == Common::HE_ISR) {
 			drawPanelText(y - 5, p);
 			drawPanelText(y + 5, s);
 		} else {

Modified: scummvm/trunk/engines/queen/resource.cpp
===================================================================
--- scummvm/trunk/engines/queen/resource.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/resource.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -194,7 +194,7 @@
 		ver->language = Common::DE_DEU;
 		break;
 	case 'H':
-		ver->language = Common::HB_ISR;
+		ver->language = Common::HE_ISR;
 		break;
 	case 'I':
 		ver->language = Common::IT_ITA;

Modified: scummvm/trunk/engines/queen/talk.cpp
===================================================================
--- scummvm/trunk/engines/queen/talk.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/queen/talk.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -1089,7 +1089,7 @@
 	if (_vm->resource()->getLanguage() == Common::EN_ANY || _vm->display()->textWidth(option) <= MAX_TEXT_WIDTH) {
 		strcpy(optionText[0], option);
 		lines = 1;
-	} else if (_vm->resource()->getLanguage() == Common::HB_ISR) {
+	} else if (_vm->resource()->getLanguage() == Common::HE_ISR) {
 		lines = splitOptionHebrew(option, optionText);
 	} else {
 		lines = splitOptionDefault(option, optionText);

Modified: scummvm/trunk/engines/scumm/detection_tables.h
===================================================================
--- scummvm/trunk/engines/scumm/detection_tables.h	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/scumm/detection_tables.h	2010-04-12 21:21:06 UTC (rev 48645)
@@ -655,7 +655,7 @@
 	{ "freddi3", "F3-Mdemo", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 },
 	{ "freddi3", "f3-mdemo", kGenHEPC, UNK_LANG, UNK, 0 },
 	{ "freddi3", "FF3-DEMO", kGenHEPC, UNK_LANG, UNK, 0 },
-	{ "freddi3", "FF3DEMO", kGenHEPC, Common::HB_ISR, UNK, 0 },
+	{ "freddi3", "FF3DEMO", kGenHEPC, Common::HE_ISR, UNK, 0 },
 	{ "freddi3", "Freddi 3", kGenHEMac, Common::NL_NLD, Common::kPlatformMacintosh, 0 },
 	{ "freddi3", "Freddi Fish 3", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 },
 	{ "freddi3", "FreddiFGT", kGenHEPC, Common::DE_DEU, UNK, 0 },
@@ -736,7 +736,7 @@
 	{ "pajama2", "pj2demo", kGenHEPC, UNK_LANG, UNK, 0 },
 	{ "pajama2", "Pjs2demo", kGenHEPC, UNK_LANG, UNK, 0 },
 	{ "pajama2", "PJ2 Demo", kGenHEMac, Common::NL_NLD, Common::kPlatformMacintosh, 0 },
-	{ "pajama2", "PS2DEMO", kGenHEPC, Common::HB_ISR, UNK, 0 },
+	{ "pajama2", "PS2DEMO", kGenHEPC, Common::HE_ISR, UNK, 0 },
 
 	{ "pajama3", "pajama3", kGenHEPC, UNK_LANG, UNK, 0 },
 	{ "pajama3", "FPJ3Demo", kGenHEPC, Common::FR_FRA, UNK, 0 },

Modified: scummvm/trunk/engines/scumm/scumm-md5.h
===================================================================
--- scummvm/trunk/engines/scumm/scumm-md5.h	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/scumm/scumm-md5.h	2010-04-12 21:21:06 UTC (rev 48645)
@@ -1,5 +1,5 @@
 /*
-  This file was generated by the md5table tool on Sun Apr 04 09:25:29 2010
+  This file was generated by the md5table tool on Mon Apr  5 16:05:33 2010
   DO NOT EDIT MANUALLY!
  */
 
@@ -84,7 +84,7 @@
 	{ "182344899c2e2998fca0bebcd82aa81a", "atlantis", "", "CD", 12035, Common::EN_ANY, Common::kPlatformPC },
 	{ "183d7464902d40d00800e8ee1f04117c", "maniac", "V2", "V2", 1988, Common::DE_DEU, Common::kPlatformPC },
 	{ "1875b90fade138c9253a8e967007031a", "indy3", "VGA", "VGA", 6295, Common::EN_ANY, Common::kPlatformPC },
-	{ "187d315f6b5168f68680dfe8c3d76a3e", "loom", "EGA", "EGA", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "187d315f6b5168f68680dfe8c3d76a3e", "loom", "EGA", "EGA", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "1900e501a52fbf55bde6e4196f6d2aa6", "zak", "V2", "V2", -1, Common::IT_ITA, Common::kPlatformPC },
 	{ "19263586f749a560c1adf8b3393a9593", "socks", "HE 85", "", -1, Common::RU_RUS, Common::kPlatformWindows },
 	{ "19bf6938a94698296bcb0c99c31c91a7", "spyfox2", "", "Demo", -1, Common::EN_GRB, Common::kPlatformWindows },
@@ -97,7 +97,7 @@
 	{ "1dd3c11ea4439adfe681e4e405b624e1", "monkey", "EGA", "EGA", -1, Common::FR_FRA, Common::kPlatformPC },
 	{ "1dd7aa088e09f96d06818aa9a9deabe0", "indy3", "No AdLib", "EGA", 5361, Common::EN_ANY, Common::kPlatformMacintosh },
 	{ "1ed22f601f8b3695804a6583cc3083f1", "puttrace", "HE 98.5", "", -1, Common::NL_NLD, Common::kPlatformUnknown },
-	{ "1f2e62b5a9c50589fc342285a6bb3a27", "freddi", "HE 73", "", -1, Common::HB_ISR, Common::kPlatformWindows },
+	{ "1f2e62b5a9c50589fc342285a6bb3a27", "freddi", "HE 73", "", -1, Common::HE_ISR, Common::kPlatformWindows },
 	{ "1fbebd7b2b692df5297870447a80cfed", "atlantis", "Floppy", "Floppy", 12030, Common::DE_DEU, Common::kPlatformPC },
 	{ "1ff5997c78fbd0a841a75ef15a05d9d5", "BluesBirthday", "", "Red", -1, Common::EN_ANY, Common::kPlatformWindows },
 	{ "2012f854d83d9cc6f73b2b544cd8bbf8", "water", "HE 80", "", -1, Common::RU_RUS, Common::kPlatformWindows },
@@ -124,7 +124,7 @@
 	{ "2a208ffbcd0e83e86f4356e6f64aa6e1", "loom", "EGA", "EGA", -1, Common::ES_ESP, Common::kPlatformPC },
 	{ "2a41b53cf1a90b6e6f26c10cc6041084", "tentacle", "", "Demo", 2439158, Common::EN_ANY, Common::kPlatformMacintosh },
 	{ "2a446817ffcabfef8716e0c456ecaf81", "puttzoo", "", "Demo", -1, Common::DE_DEU, Common::kPlatformWindows },
-	{ "2a8658dbd13d84d1bce64a71a35995eb", "pajama2", "HE 99", "Demo", -1, Common::HB_ISR, Common::kPlatformWindows },
+	{ "2a8658dbd13d84d1bce64a71a35995eb", "pajama2", "HE 99", "Demo", -1, Common::HE_ISR, Common::kPlatformWindows },
 	{ "2c04aacffb8428f30ccf4f734fbe3adc", "activity", "", "", -1, Common::EN_ANY, Common::kPlatformPC },
 	{ "2ccd8891ce4d3f1a334d21bff6a88ca2", "monkey", "CD", "", 9455, Common::EN_ANY, Common::kPlatformMacintosh },
 	{ "2d1e891fe52df707c30185e52c50cd92", "monkey", "CD", "CD", 8955, Common::EN_ANY, Common::kPlatformPC },
@@ -168,7 +168,7 @@
 	{ "3a3e592b074f595489f7f11e150c398d", "puttzoo", "HE 99", "Updated", -1, Common::EN_USA, Common::kPlatformWindows },
 	{ "3a5d13675e9a23aedac0bac7730f0ac1", "samnmax", "", "CD", -1, Common::FR_FRA, Common::kPlatformMacintosh },
 	{ "3a5ec90d556d4920976c5578bfbfaf79", "maniac", "NES", "extracted", -1, Common::DE_DEU, Common::kPlatformNES },
-	{ "3af61c5edf8e15b43dbafd285b2e9777", "puttcircus", "", "Demo", -1, Common::HB_ISR, Common::kPlatformWindows },
+	{ "3af61c5edf8e15b43dbafd285b2e9777", "puttcircus", "", "Demo", -1, Common::HE_ISR, Common::kPlatformWindows },
 	{ "3b301b7892f883ce42ab4be6a274fea6", "samnmax", "Floppy", "Floppy", -1, Common::EN_ANY, Common::kPlatformPC },
 	{ "3b832f4a90740bf22e9b8ed42ca0128c", "freddi4", "HE 99", "", -1, Common::EN_GRB, Common::kPlatformWindows },
 	{ "3cce1913a3bc586b51a75c3892ff18dd", "indy3", "VGA", "VGA", -1, Common::RU_RUS, Common::kPlatformPC },
@@ -277,7 +277,7 @@
 	{ "688328c5bdc4c8ec4145688dfa077bf2", "freddi4", "HE 99", "Demo", -1, Common::DE_DEU, Common::kPlatformUnknown },
 	{ "6886e5d08cee329b1f2e743ae2e3ceed", "monkey2", "", "", 11135, Common::DE_DEU, Common::kPlatformPC },
 	{ "695fe0b3963333b7e15b37514db3c745", "thinkerk", "", "Demo", 29789, Common::EN_USA, Common::kPlatformUnknown },
-	{ "697c9b7c55a05d8199c48b48e379d2c8", "puttmoon", "", "", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "697c9b7c55a05d8199c48b48e379d2c8", "puttmoon", "", "", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "69d70269fafc4445adbb0d223e4f9a3f", "indy3", "EGA", "EGA", 5361, Common::EN_ANY, Common::kPlatformPC },
 	{ "69ea626f1f87eecb78ea0d6c6b983a1d", "monkey2", "", "", -1, Common::IT_ITA, Common::kPlatformPC },
 	{ "69ffe29185b8d71f09f6199f8b2a87cb", "lost", "HE 100", "", -1, Common::RU_RUS, Common::kPlatformWindows },
@@ -379,7 +379,7 @@
 	{ "8f3758ff98c9c5d78e5d635222cad026", "atlantis", "Floppy", "Floppy", -1, Common::IT_ITA, Common::kPlatformPC },
 	{ "8fec68383202d38c0d25e9e3b757c5df", "comi", "Demo", "Demo", 18041, Common::UNK_LANG, Common::kPlatformWindows },
 	{ "8ffd618a776a4c0d8922bb28b09f8ce8", "airport", "", "Demo", -1, Common::EN_ANY, Common::kPlatformWindows },
-	{ "90a329d8ad5b7ce0690429e98cfbb32f", "funpack", "", "", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "90a329d8ad5b7ce0690429e98cfbb32f", "funpack", "", "", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "90c755e1c9b9b8a4129d37b2259d0655", "chase", "HE 100", "Updated", -1, Common::EN_USA, Common::kPlatformUnknown },
 	{ "90e2f0af4f779629695c6394a65bb702", "spyfox2", "", "", -1, Common::FR_FRA, Common::kPlatformUnknown },
 	{ "910e31cffb28226bd68c569668a0d6b4", "monkey", "EGA", "EGA", -1, Common::ES_ESP, Common::kPlatformPC },
@@ -540,7 +540,7 @@
 	{ "d62d248c3df6ec177405e2cb23d923b2", "indy3", "EGA", "EGA", -1, Common::IT_ITA, Common::kPlatformPC },
 	{ "d6334a5a9b61afe18c368540fdf522ca", "airport", "", "", -1, Common::EN_ANY, Common::kPlatformMacintosh },
 	{ "d6dd0646404768a63e963891a96daadd", "atlantis", "Floppy", "Floppy", 12035, Common::EN_ANY, Common::kPlatformMacintosh },
-	{ "d73c851b942af44deb9b6d5f416a0972", "freddi3", "HE 99", "Demo", -1, Common::HB_ISR, Common::kPlatformWindows },
+	{ "d73c851b942af44deb9b6d5f416a0972", "freddi3", "HE 99", "Demo", -1, Common::HE_ISR, Common::kPlatformWindows },
 	{ "d74122362a77ec24525fdd50297dfd82", "freddi4", "", "", -1, Common::FR_FRA, Common::kPlatformMacintosh },
 	{ "d7ab7cd6105546016e6a0d46fb36b964", "pajama", "HE 100", "Demo", -1, Common::EN_ANY, Common::kPlatformUnknown },
 	{ "d7b247c26bf1f01f8f7daf142be84de3", "balloon", "HE 99", "Updated", -1, Common::EN_ANY, Common::kPlatformWindows },
@@ -567,7 +567,7 @@
 	{ "e144f5f49d9241d2a9dee2576b3d09cb", "airport", "", "Demo", -1, Common::EN_ANY, Common::kPlatformWindows },
 	{ "e17db1ddf91b39ca6bbc8ad3ed19e883", "monkey", "FM-TOWNS", "", -1, Common::JA_JPN, Common::kPlatformFMTowns },
 	{ "e246e02db9630533a40d99c9f54a8e01", "monkey2", "", "", -1, Common::EN_ANY, Common::kPlatformMacintosh },
-	{ "e361a7058ed8e8ebb462663c0a3ae8d6", "puttputt", "HE 62", "", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "e361a7058ed8e8ebb462663c0a3ae8d6", "puttputt", "HE 62", "", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "e41de1c2a15abbcdbf9977e2d7e8a340", "freddi2", "HE 100", "Updated", -1, Common::RU_RUS, Common::kPlatformWindows },
 	{ "e44ea295a3f8fe4f41983080dab1e9ce", "freddi", "HE 90", "Updated", -1, Common::FR_FRA, Common::kPlatformMacintosh },
 	{ "e534d29afb3c6e0ee9dc3d53c5956714", "atlantis", "Floppy", "Floppy", -1, Common::DE_DEU, Common::kPlatformAmiga },
@@ -595,10 +595,10 @@
 	{ "ee785fe2569bc9965526e774f7ab86f1", "spyfox", "HE 99", "", -1, Common::FR_FRA, Common::kPlatformMacintosh },
 	{ "ef347474f3c7be3b29584eaa133cca05", "samnmax", "Floppy", "Floppy", -1, Common::FR_FRA, Common::kPlatformPC },
 	{ "ef71a322b6530ac45b1a070f7c0795f7", "moonbase", "Demo", "Demo", -1, Common::EN_ANY, Common::kPlatformWindows },
-	{ "ef74d9071d4e564b037cb44bd6774de7", "fbear", "HE 62", "", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "ef74d9071d4e564b037cb44bd6774de7", "fbear", "HE 62", "", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "efe0a04a703e765ebebe92b6c8aa6b86", "baseball2003", "", "", -1, Common::EN_ANY, Common::kPlatformUnknown },
 	{ "f049e38c1f8302b5db6170f1872af89a", "monkey", "CD", "CD", 8955, Common::ES_ESP, Common::kPlatformPC },
-	{ "f06e66fd45b2f8b0f4a2833ff4476050", "fbpack", "", "", -1, Common::HB_ISR, Common::kPlatformPC },
+	{ "f06e66fd45b2f8b0f4a2833ff4476050", "fbpack", "", "", -1, Common::HE_ISR, Common::kPlatformPC },
 	{ "f08145577e4f13584cc90b3d6e9caa55", "pajama3", "", "Demo", -1, Common::NL_NLD, Common::kPlatformUnknown },
 	{ "f163cf53f7850e43fb482471e5c52e1a", "maniac", "NES", "", 262144, Common::ES_ESP, Common::kPlatformNES },
 	{ "f1b0e0d587b85052de5534a3847e68fe", "water", "HE 99", "Updated", -1, Common::EN_ANY, Common::kPlatformUnknown },

Modified: scummvm/trunk/engines/tinsel/config.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/config.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/tinsel/config.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -141,7 +141,7 @@
 
 	if (lang == Common::JA_JPN) {
 		// TODO: Add support for JAPAN version
-	} else if (lang == Common::HB_ISR) {
+	} else if (lang == Common::HE_ISR) {
 		// TODO: Add support for HEBREW version
 
 		// The Hebrew version appears to the software as being English

Modified: scummvm/trunk/engines/tinsel/detection.cpp
===================================================================
--- scummvm/trunk/engines/tinsel/detection.cpp	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/engines/tinsel/detection.cpp	2010-04-12 21:21:06 UTC (rev 48645)
@@ -336,7 +336,7 @@
 				{"english.smp", 0, NULL, -1},
 				{NULL, 0, NULL, 0}
 			},
-			Common::HB_ISR,
+			Common::HE_ISR,
 			Common::kPlatformPC,
 			ADGF_NO_FLAGS,
 			GUIO_NONE

Modified: scummvm/trunk/tools/md5table.c
===================================================================
--- scummvm/trunk/tools/md5table.c	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/tools/md5table.c	2010-04-12 21:21:06 UTC (rev 48645)
@@ -110,7 +110,7 @@
 	{ "ko",		"KO_KOR" },
 	{ "se",		"SE_SWE" },
 	{ "en",		"EN_GRB" },
-	{ "hb",		"HB_ISR" },
+	{ "he",		"HE_ISR" },
 	{ "ru",		"RU_RUS" },
 	{ "cz",		"CZ_CZE" },
 	{ "nl",		"NL_NLD" },

Modified: scummvm/trunk/tools/scumm-md5.txt
===================================================================
--- scummvm/trunk/tools/scumm-md5.txt	2010-04-12 21:00:47 UTC (rev 48644)
+++ scummvm/trunk/tools/scumm-md5.txt	2010-04-12 21:21:06 UTC (rev 48645)
@@ -169,7 +169,7 @@
 	6f8a22bfa397be1f7ed4b74aba0e397e	-1	fr	DOS	EGA	EGA	v1.2 26 Jun 90	Jorpho
 	470c45b636139bb40716daa1c7edaad0	-1	de	DOS	EGA	EGA	v1.2 Deutsch from 7 Jun 90	Peter Eckerlein
 	fa127d7c4bb47d05bb1c33ddcaa9f767	5748	de	DOS	EGA	EGA	v1.2 Deutsch from 7 Jun 90	Fingolfin
-	187d315f6b5168f68680dfe8c3d76a3e	-1	hb	DOS	EGA	EGA	-	
+	187d315f6b5168f68680dfe8c3d76a3e	-1	he	DOS	EGA	EGA	-	
 	c3df37df9d3b481b45f75283a9907c47	-1	it	DOS	EGA	EGA	-	Andrea Petrucci
 	0be88565f734b1e9e77ccaaf3bb14b29	-1	es	DOS	EGA	EGA	v1.2 Espanol from 31 Aug 90	George Kormend
 	2a208ffbcd0e83e86f4356e6f64aa6e1	-1	es	DOS	EGA	EGA	v1.2 Espanol from 31 Aug 90	abnog, Andrea Petrucci, Peter Eckerlein
@@ -459,7 +459,7 @@
 	6bca7a1a96d16e52b8f3c42b50dbdca3	-1	jp	3DO	HE 62	-	-	George Kormendi
 	3824e60cdf639d22f6df92a03dc4b131	7732	en	DOS	HE 62	-	-	khalek
 	4f1d6f8b38343dba405472538b5037ed	7717	en	DOS	HE 62	-	-	George Kormendi
-	ef74d9071d4e564b037cb44bd6774de7	-1	hb	DOS	HE 62	-	-	sev
+	ef74d9071d4e564b037cb44bd6774de7	-1	he	DOS	HE 62	-	-	sev
 	3df6ead57930488bc61e6e41901d0e97	-1	en	Mac	HE 62	-	-	khalek
 	179879b6e35c1ead0d93aab26db0951b	13381	en	Windows	HE 70	-	-	khalek
 
@@ -470,7 +470,7 @@
 fbpack	Fatty Bear's Fun Pack
 	e01acc8c12ef44e8f778fe87e5f90f4e	-1	en	3DO	-	-	-	sev
 	c9717ee6059f1e43b768b464493d2fba	-1	jp	3DO	-	-	-	clone2727
-	f06e66fd45b2f8b0f4a2833ff4476050	-1	hb	DOS	-	-	-	sev
+	f06e66fd45b2f8b0f4a2833ff4476050	-1	he	DOS	-	-	-	sev
 
 freddi	Freddi Fish 1: The Case of the Missing Kelp Seeds
 	d4cccb5af88f3e77f370896e9ba8c5f9	-1	All	Windows	HE 71	-	-	sev
@@ -481,7 +481,7 @@
 	c782fbbe74a987c3df8ac73cd3e289ed	-1	se	Mac	HE 73	-	-	Torbj\xF6rn Andersson
 	5ebb57234b2fe5c5dff641e00184ad81	-1	fr	Windows	HE 73	-	-	gist974
 	cf8ef3a1fb483c5c4b1c584d1167b2c4	-1	de	Windows	HE 73	-	-	Oncer
-	1f2e62b5a9c50589fc342285a6bb3a27	-1	hb	Windows	HE 73	-	-	e_orz
+	1f2e62b5a9c50589fc342285a6bb3a27	-1	he	Windows	HE 73	-	-	e_orz
 	507bb360688dc4180fdf0d7597352a69	26402	se	Windows	HE 73	-	-	Sven Arvidsson
 	df047cc4792150f601290357566d36a6	-1	us	All	HE 90	Updated	-	khalek
 	e44ea295a3f8fe4f41983080dab1e9ce	-1	fr	Mac	HE 90	Updated	-	ThierryFR
@@ -528,7 +528,7 @@
 	bbadf7309c4a2c2763e4bbba3c3be634	-1	fr	All	-	Demo	-	Kirben
 	754feb59d3bf86b8a00840df74fd7b26	-1	nl	Windows	-	Demo	-	adutchguy
 	ed2b074bc3166087a747acb2a3c6abb0	-1	de	All	HE 98.5	Demo	-	Joachim Eberhard
-	d73c851b942af44deb9b6d5f416a0972	-1	hb	Windows	HE 99	Demo	-	Ori Avtalion
+	d73c851b942af44deb9b6d5f416a0972	-1	he	Windows	HE 99	Demo	-	Ori Avtalion
 
 freddi4	Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch
 	4f580a021eee026f3b4589e17d130d78	-1	All	All	-	-	-	Kirben, sev
@@ -644,7 +644,7 @@
 	36a6750e03fb505fc19fc2bf3e4dbe91	58749	en	All	-	Demo	-	sev
 	30ba1e825d4ad2b448143ae8df18482a	-1	nl	All	HE 98.5	Demo	-	Kirben
 	4521138d15d1fd7649c31fb981746231	-1	de	All	HE 98.5	Demo	-	Joachim Eberhard
-	2a8658dbd13d84d1bce64a71a35995eb	-1	hb	Windows	HE 99	Demo	-	Ori Avtalion
+	2a8658dbd13d84d1bce64a71a35995eb	-1	he	Windows	HE 99	Demo	-	Ori Avtalion
 
 pajama3	Pajama Sam 3: You Are What You Eat From Your Head to Your Feet
 	f7711f9264d4d43c2a1518ec7c10a607	79382	us	All	-	-	-	Kirben
@@ -708,7 +708,7 @@
 	a9543ef0d79bcb47cd76ec197ad0a967	-1	en	3DO	-	-	-	sev
 	780e4a0ae2ff17dc296f4a79543b44f8	-1	All	DOS	-	-	-	khalek
 	b9bb68c5d2c9b6e2d9c513a29a754a57	7828	en	DOS	-	-	-	George Kormendi
-	697c9b7c55a05d8199c48b48e379d2c8	-1	hb	DOS	-	-	-	sev
+	697c9b7c55a05d8199c48b48e379d2c8	-1	he	DOS	-	-	-	sev
 	9dc02577bf50d4cfaf3de3fbac06fbe2	-1	en	Mac	-	-	-	khalek
 	9c92eeaf517a31b7221ec2546ab669fd	-1	en	Windows	HE 70	-	-	khalek
 
@@ -726,7 +726,7 @@
 
 	a7cacad9c40c4dc9e1812abf6c8af9d5	-1	en	All	-	Demo	-	Kirben, sev
 	1387d16aa620dc1c2d1fd87f8a9e7a09	-1	fr	Windows	-	Demo	-	Mevi
-	3af61c5edf8e15b43dbafd285b2e9777	-1	hb	Windows	-	Demo	-	Ori Avtalion
+	3af61c5edf8e15b43dbafd285b2e9777	-1	he	Windows	-	Demo	-	Ori Avtalion
 
 puttputt	Putt-Putt Joins the Parade
 	7766c9487f9d53a8cb0edabda5119c3d	8022	en	DOS	HE 60	-	-	George Kormendi
@@ -735,7 +735,7 @@
 	be2abe172f58db170de3a037daa1dd27	-1	jp	3DO	HE 61	-	-	clone2727
 	ee41f6afbc5b26fa475754b56fe92048	8032	jp	3DO	HE 61	-	-	George Kormendi
 	9708cf716ed8bcc9ff3fcfc69413b746	-1	en	DOS	HE 62	-	-	khalek
-	e361a7058ed8e8ebb462663c0a3ae8d6	-1	hb	DOS	HE 62	-	-	sev
+	e361a7058ed8e8ebb462663c0a3ae8d6	-1	he	DOS	HE 62	-	-	sev
 	684732efb5799c0f78804c99d8de9aba	-1	en	Mac	HE 62	-	-	khalek
 	6a30a07f353a75cdc602db27d73e1b42	-1	en	Windows	HE 70	-	-	khalek
 
@@ -806,7 +806,7 @@
 	e95cf980719c0be078fb68a67af97b4a	-1	jp	3DO	-	-	-	clone2727
 	3d219e7546039543307b55a91282bf18	-1	en	DOS	-	-	-	iziku
 	46b53fd430adcfbed791b48a0d4b079f	-1	en	DOS	-	-	-	khalek
-	90a329d8ad5b7ce0690429e98cfbb32f	-1	hb	DOS	-	-	-	
+	90a329d8ad5b7ce0690429e98cfbb32f	-1	he	DOS	-	-	-	
 
 PuttsFunShop	Putt-Putt's One-Stop Fun Shop
 	5262a27afcaee04e5c4900220bd463e7	-1	us	All	-	-	-	Kirben


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list