Skip to content

Commit

Permalink
Fixed: HUD/menu type-in effect skipped drawing the flash for the firs…
Browse files Browse the repository at this point in the history
…t character in each string.
  • Loading branch information
danij committed Jan 26, 2009
1 parent 420ddf0 commit 75326a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/plugins/common/src/hu_stuff.c
Expand Up @@ -1700,7 +1700,7 @@ void M_WriteText3(int x, int y, const char *string, dpatch_t *font,
for(pass = 0; pass < 2; ++pass)
{
count = initialCount;
maxCount = typeInTime * 2;
maxCount = typeInTime;

// Disable type-in?
if(!doTypeIn || cfg.menuEffects > 0)
Expand Down Expand Up @@ -1748,6 +1748,7 @@ void M_WriteText3(int x, int y, const char *string, dpatch_t *font,
{
break;
}

if(!c)
break;
if(c == '\n')
Expand Down

0 comments on commit 75326a7

Please sign in to comment.