[Scummvm-git-logs] scummvm master -> a272a6b578be63a9321a7064ab126e8ab898701d
sluicebox
22204938+sluicebox at users.noreply.github.com
Fri Oct 22 17:51:22 UTC 2021
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:
a272a6b578 SCI: Clarify passing of parameter: pass instead of parse for `class_table` debug command.
Commit: a272a6b578be63a9321a7064ab126e8ab898701d
https://github.com/scummvm/scummvm/commit/a272a6b578be63a9321a7064ab126e8ab898701d
Author: Ralph Caraveo III (deckarep at gmail.com)
Date: 2021-10-22T12:51:19-05:00
Commit Message:
SCI: Clarify passing of parameter: pass instead of parse for `class_table` debug command.
Minor wording change to say pass instead of parse.
Changed paths:
engines/sci/console.cpp
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 8b5a44536e..9807848e85 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -1662,7 +1662,7 @@ bool Console::cmdListSaves(int argc, const char **argv) {
}
bool Console::cmdClassTable(int argc, const char **argv) {
- debugPrintf("Available classes (parse a parameter to filter the table by a specific class):\n");
+ debugPrintf("Available classes (pass a parameter to filter the table by a specific class):\n");
for (uint i = 0; i < _engine->_gamestate->_segMan->classTableSize(); i++) {
Class temp = _engine->_gamestate->_segMan->_classTable[i];
More information about the Scummvm-git-logs
mailing list