aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2011-08-03 16:31:32 +0200
committerStrangerke2011-08-03 16:31:32 +0200
commit7ea1f74759c2b1a5e9d497a6bc3175a414ac94a1 (patch)
tree978929f9b70225efd8e9b359d3bd227c1c430ae9
parent6f92cdd0d0e124653c4164c7ab0f91e5b910f6bc (diff)
downloadscummvm-rg350-7ea1f74759c2b1a5e9d497a6bc3175a414ac94a1.tar.gz
scummvm-rg350-7ea1f74759c2b1a5e9d497a6bc3175a414ac94a1.tar.bz2
scummvm-rg350-7ea1f74759c2b1a5e9d497a6bc3175a414ac94a1.zip
CGE: Fix display of info text at the beginning of the game
-rw-r--r--engines/cge/vga13h.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp
index cc715da03c..8889c59b8d 100644
--- a/engines/cge/vga13h.cpp
+++ b/engines/cge/vga13h.cpp
@@ -813,7 +813,7 @@ Vga::Vga(int mode)
for (int i = 10; i < 20; i++) {
char *text = _text->getText(i);
if (text) {
- debugN("%s", text);
+ debugN("%s\n", text);
std = false;
}
}