ref: d76bed743c72bfccf5cbbc18dcd9cdb1e75935b3
parent: 56412813c70ba44a6f6a74cee5bf460ca6a31402
author: Simon Howard <fraggle@gmail.com>
date: Sun Apr 18 10:30:06 EDT 2010
Add some DEH_String() calls where appropriate. Subversion-branch: /branches/raven-branch Subversion-revision: 1894
--- a/src/heretic/in_lude.c
+++ b/src/heretic/in_lude.c
@@ -850,7 +850,7 @@
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 @@
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 @@
x += 34;
if (s)
{- IN_DrTextB(":", x - 8, y);+ IN_DrTextB(DEH_String(":"), x - 8, y);IN_DrawNumber(s, x, y, 2);
}
}
--- a/src/heretic/mn_menu.c
+++ b/src/heretic/mn_menu.c
@@ -492,7 +492,7 @@
{MN_DrTextA(SlotText[quicksave - 1], 160 -
MN_TextAWidth(SlotText[quicksave - 1]) / 2, 90);
- MN_DrTextA("?", 160 ++ MN_DrTextA(DEH_String("?"), 160 +MN_TextAWidth(SlotText[quicksave - 1]) / 2, 90);
}
if (typeofask == 4)
@@ -499,7 +499,7 @@
{MN_DrTextA(SlotText[quickload - 1], 160 -
MN_TextAWidth(SlotText[quickload - 1]) / 2, 90);
- MN_DrTextA("?", 160 ++ MN_DrTextA(DEH_String("?"), 160 +MN_TextAWidth(SlotText[quickload - 1]) / 2, 90);
}
UpdateState |= I_FULLSCRN;
@@ -706,11 +706,11 @@
{if (messageson)
{- MN_DrTextB("ON", 196, 50);+ MN_DrTextB(DEH_String("ON"), 196, 50);}
else
{- MN_DrTextB("OFF", 196, 50);+ MN_DrTextB(DEH_String("OFF"), 196, 50);}
DrawSlider(&OptionsMenu, 3, 10, mouseSensitivity);
}
--
⑨