[Scummvm-git-logs] scummvm master -> a1bf80d7bd8e7a9ac787b95cde92ac7d8db4f8c5
bluegr
noreply at scummvm.org
Tue Feb 3 06:36:23 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
a1bf80d7bd GUI: Add 'clear' and 'cls' to the debugger's help text
Commit: a1bf80d7bd8e7a9ac787b95cde92ac7d8db4f8c5
https://github.com/scummvm/scummvm/commit/a1bf80d7bd8e7a9ac787b95cde92ac7d8db4f8c5
Author: lwcorp (lwcorp at users.noreply.github.com)
Date: 2026-02-03T08:36:19+02:00
Commit Message:
GUI: Add 'clear' and 'cls' to the debugger's help text
Add on-screen instructions for the commands `clear` and its alias `cls` that PR 5347 added.
Changed paths:
gui/debugger.cpp
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 7b445933432..b37c84add20 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -239,6 +239,7 @@ void Debugger::enter() {
if (_firstTime) {
debugPrintf("Debugger started, type 'exit' to return to the game.\n");
debugPrintf("Type 'help' to see a little list of commands and variables.\n");
+ debugPrintf("Type 'clear' or 'cls' to clear the debugger's output.\n");
_firstTime = false;
}
More information about the Scummvm-git-logs
mailing list