aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/misc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/archetype/misc.cpp')
-rw-r--r--engines/glk/archetype/misc.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/glk/archetype/misc.cpp b/engines/glk/archetype/misc.cpp
index 3818e3107b..066c6c9225 100644
--- a/engines/glk/archetype/misc.cpp
+++ b/engines/glk/archetype/misc.cpp
@@ -126,12 +126,9 @@ void add_bytes(int delta) {
Bytes += delta;
if (DebugMan.isDebugChannelEnabled(DEBUG_BYTES)) {
- if (delta >= 0)
- g_vm->write("Allocated ");
- else
- g_vm->write("Deallocated ");
-
- g_vm->writeln("%.3d bytes. Current consumed memory: %.6d", ABS(delta), Bytes);
+ String line = (delta >= 0) ? "Allocated " : "Deallocated ";
+ line += String::format("%.3d bytes. Current consumed memory: %.6d", ABS(delta), Bytes);
+ debug(line.c_str());
}
}