about summary refs log tree commit diff stats
path: root/072scenario_screen.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-16 16:18:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-16 16:18:26 -0700
commite45c1ce281933f5cc6662d14e03feb195a289143 (patch)
treef8c0c8b029be6bc5c07f73d3d0735a01a4641ef4 /072scenario_screen.cc
parent7b7aa5f66c756198b9cfdf2f616bb98e2c84c7b8 (diff)
downloadmu-e45c1ce281933f5cc6662d14e03feb195a289143.tar.gz
1573
Diffstat (limited to '072scenario_screen.cc')
-rw-r--r--072scenario_screen.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/072scenario_screen.cc b/072scenario_screen.cc
index a2824a07..b95e99eb 100644
--- a/072scenario_screen.cc
+++ b/072scenario_screen.cc
@@ -330,7 +330,7 @@ void dump_screen() {
 //?     cerr << curr << ":\n"; //? 2
     for (long long int col = 0; col < screen_width; ++col) {
       if (Memory[curr])
-        cerr << static_cast<char>(Memory[curr]);
+        cerr << to_unicode(Memory[curr]);
       else
         cerr << ' ';
       curr += /*size of screen-cell*/2;