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.
This commit is contained in:
lwcorp
2026-02-03 08:36:19 +02:00
committed by GitHub
parent aa5547d561
commit a1bf80d7bd
+1
View File
@@ -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;
}