mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 04:28:37 +00:00
CINE: Initialize some unitialized variables
This commit is contained in:
parent
95728f4890
commit
87c457a223
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user