Skip to content

Commit

Permalink
Fixed missing frag counters in the automap.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Jun 19, 2006
1 parent 72cdce4 commit 9af2122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/am_map.c
Expand Up @@ -2533,7 +2533,7 @@ void AM_drawFragsTable(void)
M_WriteText2(320 - w - 5, y, ":", hu_font_a, -1, -1, -1, -1);
// The frags count.
sprintf(tmp, "%i", totalFrags[choose]);
M_WriteText2(320 - w, y, tmp, hu_font_a, 1, 1, 1, -1);
M_WriteText2(320 - w, y, tmp, hu_font_a, -1, -1, -1, -1);
// Mark to ignore in the future.
totalFrags[choose] = FRAGS_DRAWN;
}
Expand Down

0 comments on commit 9af2122

Please sign in to comment.