Skip to content

Commit

Permalink
Fixed|Client: Paused infine cannot be unpaused by key events
Browse files Browse the repository at this point in the history
The FinaleInterpreter_Skip() function was not being called in the
__CLIENT__ build.
  • Loading branch information
skyjake committed Feb 2, 2013
1 parent e9a021d commit 0a23625
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions doomsday/client/src/ui/finaleinterpreter.cpp
Expand Up @@ -1319,13 +1319,10 @@ int FinaleInterpreter_Responder(finaleinterpreter_t* fi, const ddevent_t* ev)
}
#endif
#ifdef __SERVER__
{
// Tell clients to skip.
Sv_Finale(fi->_id, FINF_SKIP, 0);
return FinaleInterpreter_Skip(fi);
}
// Tell clients to skip.
Sv_Finale(fi->_id, FINF_SKIP, 0);
#endif
return false;
return FinaleInterpreter_Skip(fi);
}

DEFFC(Do)
Expand Down

0 comments on commit 0a23625

Please sign in to comment.