aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/frotz.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-18 11:51:42 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit2a3e6c49bf6d664d7c91dd17e41e97f042f70206 (patch)
treedfb9841206835ef38b2a67a53e161b5f5c4573af /engines/glk/frotz/frotz.cpp
parentada80dedc0d39d76a2cd3c3b4af6c3219738d0bf (diff)
downloadscummvm-rg350-2a3e6c49bf6d664d7c91dd17e41e97f042f70206.tar.gz
scummvm-rg350-2a3e6c49bf6d664d7c91dd17e41e97f042f70206.tar.bz2
scummvm-rg350-2a3e6c49bf6d664d7c91dd17e41e97f042f70206.zip
GLK: FROTZ: Set up default Frotz white on blue screen colors
Diffstat (limited to 'engines/glk/frotz/frotz.cpp')
-rw-r--r--engines/glk/frotz/frotz.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/glk/frotz/frotz.cpp b/engines/glk/frotz/frotz.cpp
index 58287900d9..6b79cfa060 100644
--- a/engines/glk/frotz/frotz.cpp
+++ b/engines/glk/frotz/frotz.cpp
@@ -50,6 +50,9 @@ void Frotz::initialize() {
// Call process initialization
Processor::initialize();
+ // Set the screen colors
+ garglk_set_zcolors(_defaultForeground, _defaultBackground);
+
// Restart the game
z_restart();
}