Skip to content

Commit

Permalink
Fix|libheretic: a bad merge swallowed up HU_WakeWidgets
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHargrave committed May 15, 2015
1 parent 98ea456 commit 9ee7cd6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions doomsday/apps/plugins/heretic/src/st_stuff.cpp
Expand Up @@ -994,6 +994,25 @@ void ST_Shutdown()
}
}

void HU_WakeWidgets(int localPlayer)
{
if(localPlayer < 0)
{
for(uint i = 0; i < MAXPLAYERS; ++i)
{
HU_WakeWidgets(i);
}
}
else if(localPlayer < MAXPLAYERS)
{
if(players[localPlayer].plr->inGame)
{
ST_Start(localPlayer);
}
}

}

void ST_CloseAll(int player, dd_bool fast)
{
NetSv_DismissHUDs(player, fast);
Expand Down

0 comments on commit 9ee7cd6

Please sign in to comment.