From 0db9a4d6b4a5ed8bd7d706dca9835b38ac4b673b Mon Sep 17 00:00:00 2001 From: Arnaud Boutonné Date: Wed, 22 Sep 2010 20:37:03 +0000 Subject: HUGO: Fix intro in H3 Win This fixes the path on the world map, during intro svn-id: r52858 --- engines/hugo/intro.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'engines/hugo/intro.cpp') diff --git a/engines/hugo/intro.cpp b/engines/hugo/intro.cpp index c856985f47..2b4d910183 100644 --- a/engines/hugo/intro.cpp +++ b/engines/hugo/intro.cpp @@ -109,9 +109,15 @@ bool intro_v3w::introPlay() { //TODO : Add proper check of story mode //#if STORY // SetBkMode(TRANSPARENT); + +// FIXME: This initialization shouldn't be there, as all the fonts should be loaded directly + _vm.screen().loadFont(0); + if (introTicks < introSize) { // Scale viewport x_intro,y_intro to screen (offsetting y) - _vm.screen().writeChar(_vm._introX[introTicks], _vm._introY[introTicks] - DIBOFF_Y, 'x', _TBRIGHTWHITE); + _vm.screen().writeStr(_vm._introX[introTicks], _vm._introY[introTicks] - DIBOFF_Y, "x", _TBRIGHTWHITE); + _vm.screen().displayBackground(); + // Text boxes at various times switch (introTicks) { -- cgit v1.2.3