[Scummvm-git-logs] scummvm master -> a23d51adb2a59dd4ae53af333d27cfae7190417b

dreammaster dreammaster at scummvm.org
Mon Nov 14 05:35:52 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:
a23d51adb2 DEVTOOLS: Fix missing comma in create_titanic


Commit: a23d51adb2a59dd4ae53af333d27cfae7190417b
    https://github.com/scummvm/scummvm/commit/a23d51adb2a59dd4ae53af333d27cfae7190417b
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-11-13T23:35:25-05:00

Commit Message:
DEVTOOLS: Fix missing comma in create_titanic

Changed paths:
    devtools/create_titanic/create_titanic_dat.cpp



diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp
index 41cdad4..c546214 100644
--- a/devtools/create_titanic/create_titanic_dat.cpp
+++ b/devtools/create_titanic/create_titanic_dat.cpp
@@ -557,7 +557,7 @@ static const char *const STRINGS_EN[133] = {
 	"no class"
 };
 
-static const char *const STRINGS_DE[177] = {
+static const char *const STRINGS_DE[178] = {
 	// TODO: Still many strings to translate to German
 	"",
 	"Sie befinden sich vor dem Pellerator.",
@@ -650,7 +650,7 @@ static const char *const STRINGS_DE[177] = {
 	"the BellBot",
 	"the Maitre d'Bot",
 	"a Succ-U-Bus",
-	"Unknown"
+	"Unknown",
 	"The arm is already holding something.",
 	"You can't get this.",
 	"That doesn't seem to do anything.",
@@ -1242,7 +1242,7 @@ void writeData() {
 	writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40);
 	writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34);
 	writeStringArray("TEXT/STRINGS", STRINGS_EN, 133);
-	writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 177);
+	writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 178);
 	const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 };
 	const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 };
 	const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 };





More information about the Scummvm-git-logs mailing list