2002-09-21 Matt Hargett <matt@use.net>
* scumm.dsp, scummvm.dsp, simon.dsp: Turn on warning as errors. Generate PDBs on all builds. * gameDetector.cpp, newgui.cpp, widget.cpp, actor.cpp, dialogs.cpp, resource.cpp, saveload.cpp, scumm_renderer.cpp: Fix warnings where possible. One pragma added to eliminate warning of unknown pragmas. * string.cpp: If unknown escape sequence, print warning. svn-id: r4998
This commit is contained in:
parent
fbe9c544de
commit
8390b0cc53
14 changed files with 51 additions and 32 deletions
|
@ -142,7 +142,7 @@ bool Scumm::loadState(int slot, bool compat)
|
|||
int old_screenEffectFlag = _screenEffectFlag;
|
||||
_screenEffectFlag = true;
|
||||
fadeOut(129);
|
||||
_screenEffectFlag = old_screenEffectFlag;
|
||||
_screenEffectFlag = old_screenEffectFlag ? true : false;
|
||||
|
||||
initScreens(0, sb, _realWidth, sh);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue