diff --git a/Source/help.cpp b/Source/help.cpp index 579cfcca5..ba01dff56 100644 --- a/Source/help.cpp +++ b/Source/help.cpp @@ -455,7 +455,11 @@ void DrawHelp() DrawSTextHelp(); DrawQTextBack(); +#ifdef HELLFIRE + PrintSString(0, 2, TRUE, "Hellfire Help", COL_GOLD, 0); +#else PrintSString(0, 2, TRUE, "Diablo Help", COL_GOLD, 0); +#endif DrawSLine(5); s = &gszHelpText[0]; @@ -513,7 +517,8 @@ void DrawHelp() s++; } tempstr[c] = *s; - w += fontkern[fontframe[gbFontTransTbl[(BYTE)tempstr[c]]]] + 1; + BYTE tc = gbFontTransTbl[(BYTE)tempstr[c]]; + w += fontkern[fontframe[tc]] + 1; c++; s++; }