WINTERMUTE: Add missing newline to debugger output

This commit is contained in:
Donovan Watteau 2023-03-09 13:17:50 +01:00
parent 6fc06d11b2
commit 85012c43db

View File

@ -99,7 +99,7 @@ void Console::printUsage(const Common::String &command) {
} else if (command.equals(SET_CMD)) {
debugPrintf("Usage: %s <name> = <value> to set <name> to <value>\n", command.c_str());
} else {
debugPrintf("No help about this command, sorry.");
debugPrintf("No help about this command, sorry.\n");
}
}