about summary refs log tree commit diff stats
path: root/072scenario_screen.cc
diff options
context:
space:
mode:
Diffstat (limited to '072scenario_screen.cc')
-rw-r--r--072scenario_screen.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/072scenario_screen.cc b/072scenario_screen.cc
index b529a4fc..6d6f18cb 100644
--- a/072scenario_screen.cc
+++ b/072scenario_screen.cc
@@ -329,6 +329,7 @@ void dump_screen() {
   long long int curr = screen_data_start+1;  // skip length
   for (long long int row = 0; row < screen_height; ++row) {
 //?     cerr << curr << ":\n"; //? 2
+    cerr << '.';
     for (long long int col = 0; col < screen_width; ++col) {
       if (Memory[curr])
         cerr << to_unicode(Memory[curr]);
@@ -336,6 +337,6 @@ void dump_screen() {
         cerr << ' ';
       curr += /*size of screen-cell*/2;
     }
-    cerr << '\n';
+    cerr << ".\n";
   }
 }