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

eriktorbjorn noreply at scummvm.org
Tue Apr 26 16:04:51 UTC 2022


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:
ff1957196d SCUMM: Fix draft name in "drafts" debug command


Commit: ff1957196d4af21994014d2a3c21587739119198
    https://github.com/scummvm/scummvm/commit/ff1957196d4af21994014d2a3c21587739119198
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2022-04-26T18:04:15+02:00

Commit Message:
SCUMM: Fix draft name in "drafts" debug command

It's "Straw Into Gold", not "Straw to Gold".

Changed paths:
    engines/scumm/debugger.cpp


diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index fe47056d8e0..700c6934c9f 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -913,11 +913,11 @@ void ScummDebugger::drawBox(int box) {
 
 bool ScummDebugger::Cmd_PrintDraft(int argc, const char **argv) {
 	const char *names[] = {
-		"Opening",      "Straw to Gold", "Dyeing",
-		"Night Vision",	"Twisting",      "Sleep",
-		"Emptying",     "Invisibility",  "Terror",
-		"Sharpening",   "Reflection",    "Healing",
-		"Silence",      "Shaping",       "Unmaking",
+		"Opening",      "Straw Into Gold", "Dyeing",
+		"Night Vision",	"Twisting",        "Sleep",
+		"Emptying",     "Invisibility",    "Terror",
+		"Sharpening",   "Reflection",      "Healing",
+		"Silence",      "Shaping",         "Unmaking",
 		"Transcendence"
 	};
 
@@ -985,7 +985,7 @@ bool ScummDebugger::Cmd_PrintDraft(int argc, const char **argv) {
 
 	for (i = 0; i < 16; i++) {
 		draft = _vm->_scummVars[base + i * 2];
-		debugPrintf("%d %-13s %c%c%c%c %c%c\n",
+		debugPrintf("%d %-15s %c%c%c%c %c%c\n",
 			base + 2 * i,
 			names[i],
 			notes[draft & 0x0007],




More information about the Scummvm-git-logs mailing list