- The co-op summary screen now has a totals row at the bottom (if it fits).
- Changed WI_drawPercent() when wi_percents is false so that the total display is optional, and it formats it like Heretic's intermission, with a slash and a fixed-width right column. - Font is no longer a property of the screen object. Pass the font to DrawText and DrawChar directly instead. - Doom's intermission characters are now collected together as a font so they can be colorized. SVN r1294 (trunk)
This commit is contained in:
parent
904b59f266
commit
6e83d231fe
39 changed files with 471 additions and 556 deletions
|
|
@ -58,6 +58,7 @@
|
|||
#include "gi.h"
|
||||
#include "statnums.h"
|
||||
#include "g_level.h"
|
||||
#include "v_font.h"
|
||||
|
||||
// State.
|
||||
#include "r_state.h"
|
||||
|
|
@ -544,7 +545,7 @@ void P_PlayerInSpecialSector (player_t *player)
|
|||
sector->special &= ~SECRET_MASK;
|
||||
if (player->mo->CheckLocalView (consoleplayer))
|
||||
{
|
||||
C_MidPrint (secretmessage);
|
||||
C_MidPrint (SmallFont, secretmessage);
|
||||
S_Sound (CHAN_AUTO, "misc/secret", 1, ATTN_NORM);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue