mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
GLK: ADVSYS: Tweak debug line, added input line prompt character
This commit is contained in:
parent
75fe5b5024
commit
5f7955daa5
@ -43,6 +43,7 @@ Common::String GlkInterface::readLine() {
|
||||
event_t ev;
|
||||
char line[200];
|
||||
|
||||
print(": ");
|
||||
glk_request_line_event(_window, line, 199, 0);
|
||||
|
||||
do {
|
||||
|
@ -109,7 +109,7 @@ void VM::executeOpcode() {
|
||||
if (gDebugLevel > 0) {
|
||||
Common::String s;
|
||||
for (int idx = (int)_stack.size() - 1; idx >= 0; --idx) s += Common::String::format(" %d", _stack[idx]);
|
||||
debug("%.4x - %.2x - %d%s", _pc - 1, opcode, _stack.size(), s.c_str());
|
||||
debugC(kDebugScripts, "%.4x - %.2x - %d%s", _pc - 1, opcode, _stack.size(), s.c_str());
|
||||
}
|
||||
|
||||
if (opcode >= OP_BRT && opcode <= OP_VOWEL) {
|
||||
|
Loading…
Reference in New Issue
Block a user