summaryrefslogtreecommitdiff
path: root/src/strife/hu_stuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/hu_stuff.h')
-rw-r--r--src/strife/hu_stuff.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/strife/hu_stuff.h b/src/strife/hu_stuff.h
index f5a0e53b..6986a143 100644
--- a/src/strife/hu_stuff.h
+++ b/src/strife/hu_stuff.h
@@ -31,20 +31,21 @@
//
// Globally visible constants.
//
-#define HU_FONTSTART '!' // the first font characters
-#define HU_FONTEND '_' // the last font characters
+#define HU_FONTSTART '!' // the first font characters
+#define HU_FONTEND '_' // the last font characters
// Calculate # of glyphs in font.
-#define HU_FONTSIZE (HU_FONTEND - HU_FONTSTART + 1)
+#define HU_FONTSIZE (HU_FONTEND - HU_FONTSTART + 1)
-#define HU_BROADCAST 5
+#define HU_BROADCAST 9 // haleyjd [STRIFE] Changed 5 -> 9
-#define HU_MSGX 0
-#define HU_MSGY 0
-#define HU_MSGWIDTH 64 // in characters
-#define HU_MSGHEIGHT 1 // in lines
+#define HU_MSGX 0
+#define HU_MSGY (SHORT(hu_font[0]->height) + 1) // [STRIFE]: DOOM bug fix
+#define HU_MSGWIDTH 64 // in characters
+#define HU_MSGHEIGHT 2 // in lines
+
+#define HU_MSGTIMEOUT (8*TICRATE) // haleyjd [STRIFE] Doubled message timeout
-#define HU_MSGTIMEOUT (4*TICRATE)
//
// HEADS UP TEXT
@@ -61,7 +62,7 @@ char HU_dequeueChatChar(void);
void HU_Erase(void);
extern char *chat_macros[10];
-extern char* pnameprefixes[][16]; // villsa [STRIFE]
+extern char pnameprefixes[8][16]; // villsa [STRIFE]
// haleyjd [STRIFE] externalized:
extern char *mapnames[];