(svn r1196) -Fix: Preview Vehicle had a small glitch. Fixed now.

This commit is contained in:
truelight 2004-12-21 14:42:06 +00:00
parent 97865f03f6
commit 245bc59c68
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ void EnginesDailyLoop()
for(e=_engines,i=0; i!=TOTAL_NUM_ENGINES; e++,i++) {
if (e->flags & ENGINE_INTRODUCING) {
if (e->flags & ENGINE_PREVIEWING) {
if (!--e->preview_wait) {
if (e->preview_player != 0xFF && !--e->preview_wait) {
e->flags &= ~ENGINE_PREVIEWING;
DeleteWindowById(WC_ENGINE_PREVIEW, i);
e->preview_player++;