From 3759b4af1dc317e17938bcff56c4d0072b26b7c7 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 21 Feb 2019 18:22:28 +0100 Subject: GLK: FROTZ: Initialize _quotes, _dashes and _spaces to 0 They're int, not bool, so using 'false' seems wrong to me. --- engines/glk/frotz/screen.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/glk') diff --git a/engines/glk/frotz/screen.cpp b/engines/glk/frotz/screen.cpp index b1f28e498a..3ac697c148 100644 --- a/engines/glk/frotz/screen.cpp +++ b/engines/glk/frotz/screen.cpp @@ -59,9 +59,9 @@ void FrotzScreen::loadVersion6Fonts(Common::Archive *archive) { PropFontInfo &pi = g_conf->_propInfo; mi._size = pi._size = 7; mi._aspect = pi._aspect = 1.0; - pi._quotes = false; - pi._dashes = false; - pi._spaces = false; + pi._quotes = 0; + pi._dashes = 0; + pi._spaces = 0; pi._morePrompt = "[MORE]"; pi._lineSeparation = 0; -- cgit v1.2.3