patch fixes from Erich Hoover:

subtitles fixes

Thanks
This commit is contained in:
Pawel Kolodziejski 2005-04-03 11:33:28 +00:00
parent c9d2f4caaf
commit c0ce067e56
8 changed files with 46 additions and 36 deletions

View file

@ -210,6 +210,8 @@ void Engine::mainLoop() {
Actor *a = *i;
if (_currScene != NULL && a->inSet(_currScene->name()) && a->visible())
a->draw();
if (_currScene != NULL)
a->undraw(a->inSet(_currScene->name()) && a->visible());
}
}