diff options
Diffstat (limited to '072scenario_screen.cc')
-rw-r--r-- | 072scenario_screen.cc | 2 |
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; |