summaryrefslogtreecommitdiff
path: root/src/heretic/in_lude.c
diff options
context:
space:
mode:
authorSimon Howard2010-04-18 14:30:06 +0000
committerSimon Howard2010-04-18 14:30:06 +0000
commitd76bed743c72bfccf5cbbc18dcd9cdb1e75935b3 (patch)
treed4ff7d91c572cb263cf6991384ad31cf35111f66 /src/heretic/in_lude.c
parent56412813c70ba44a6f6a74cee5bf460ca6a31402 (diff)
downloadchocolate-doom-d76bed743c72bfccf5cbbc18dcd9cdb1e75935b3.tar.gz
chocolate-doom-d76bed743c72bfccf5cbbc18dcd9cdb1e75935b3.tar.bz2
chocolate-doom-d76bed743c72bfccf5cbbc18dcd9cdb1e75935b3.zip
Add some DEH_String() calls where appropriate.
Subversion-branch: /branches/raven-branch Subversion-revision: 1894
Diffstat (limited to 'src/heretic/in_lude.c')
-rw-r--r--src/heretic/in_lude.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heretic/in_lude.c b/src/heretic/in_lude.c
index 084cd5c3..3c382814 100644
--- a/src/heretic/in_lude.c
+++ b/src/heretic/in_lude.c
@@ -850,7 +850,7 @@ void IN_DrawDMStats(void)
MN_DrTextA(DEH_String("VICTIMS"), 140, 8);
for (i = 0; i < 7; i++)
{
- MN_DrTextA(KillersText[i], 10, 80 + 9 * i);
+ MN_DrTextA(DEH_String(KillersText[i]), 10, 80 + 9 * i);
}
if (intertime < 20)
{
@@ -941,7 +941,7 @@ void IN_DrawTime(int x, int y, int h, int m, int s)
if (h)
{
IN_DrawNumber(h, x, y, 2);
- IN_DrTextB(":", x + 26, y);
+ IN_DrTextB(DEH_String(":"), x + 26, y);
}
x += 34;
if (m || h)
@@ -951,7 +951,7 @@ void IN_DrawTime(int x, int y, int h, int m, int s)
x += 34;
if (s)
{
- IN_DrTextB(":", x - 8, y);
+ IN_DrTextB(DEH_String(":"), x - 8, y);
IN_DrawNumber(s, x, y, 2);
}
}