Skip to content

Commit

Permalink
CINE: Initialize some unitialized variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Mar 16, 2014
1 parent 95728f4 commit 87c457a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions engines/cine/cine.cpp
Expand Up @@ -55,6 +55,14 @@ CineEngine::CineEngine(OSystem *syst, const CINEGameDescription *gameDesc)
_console = new CineConsole(this);

g_cine = this;

for (int i = 0; i < NUM_FONT_CHARS; i++) {
_textHandler.fontParamTable[i].characterIdx = 0;
_textHandler.fontParamTable[i].characterWidth = 0;
}
_restartRequested = false;
_preLoad = false;
_timerDelayMultiplier = 12;
}

CineEngine::~CineEngine() {
Expand Down

0 comments on commit 87c457a

Please sign in to comment.