mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-29 21:24:53 +00:00
Fix regression in r45414.
svn-id: r45495
This commit is contained in:
parent
8150fc07bc
commit
0a1a4c7eb4
@ -186,9 +186,10 @@ TIM *TIMInterpreter::load(const char *filename, const Common::Array<const TIMOpc
|
||||
|
||||
_tim->isLoLOutro = (_vm->gameFlags().gameID == GI_LOL) && !scumm_stricmp(filename, "LOLFINAL.TIM");
|
||||
_tim->lolCharacter = 0;
|
||||
_tim = 0;
|
||||
|
||||
return _tim;
|
||||
TIM *r = _tim;
|
||||
_tim = 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
void TIMInterpreter::unload(TIM *&tim) const {
|
||||
|
Loading…
Reference in New Issue
Block a user