Skip to content

Commit

Permalink
Fixed missing fullscreen huds in all supported games.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Jul 11, 2011
1 parent 716e3f7 commit c4eb71f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions doomsday/plugins/jdoom/src/st_stuff.c
Expand Up @@ -810,7 +810,6 @@ void ST_Ticker(timespan_t ticLength)
{
if(hud->alpha > 0.0f)
{
hud->statusbarActive = 0;
hud->alpha -= 0.1f;
}
else if(hud->showBar < 1.0f)
Expand All @@ -832,7 +831,6 @@ void ST_Ticker(timespan_t ticLength)
if(hud->showBar > 0.0f)
{
hud->showBar -= 0.1f;
hud->statusbarActive = 1;
}
else if(hud->alpha < 1.0f)
{
Expand Down
2 changes: 0 additions & 2 deletions doomsday/plugins/jheretic/src/st_stuff.c
Expand Up @@ -645,7 +645,6 @@ void ST_Ticker(timespan_t ticLength)
{
if(hud->alpha > 0.0f)
{
hud->statusbarActive = 0;
hud->alpha -= 0.1f;
}
else if(hud->showBar < 1.0f)
Expand All @@ -667,7 +666,6 @@ void ST_Ticker(timespan_t ticLength)
if(hud->showBar > 0.0f)
{
hud->showBar -= 0.1f;
hud->statusbarActive = 1;
}
else if(hud->alpha < 1.0f)
{
Expand Down
2 changes: 0 additions & 2 deletions doomsday/plugins/jhexen/src/st_stuff.c
Expand Up @@ -3995,7 +3995,6 @@ void ST_Ticker(timespan_t ticLength)
{
if(hud->alpha > 0.0f)
{
hud->statusbarActive = 0;
hud->alpha -= 0.1f;
}
else if(hud->showBar < 1.0f)
Expand All @@ -4017,7 +4016,6 @@ void ST_Ticker(timespan_t ticLength)
if(hud->showBar > 0.0f)
{
hud->showBar -= 0.1f;
hud->statusbarActive = 1;
}
else if(hud->alpha < 1.0f)
{
Expand Down

0 comments on commit c4eb71f

Please sign in to comment.