Browse Source

[hellfire] DrawChr bin exact

pull/876/head^2
qndel 6 years ago committed by Anders Jenbo
parent
commit
5d7eeddcc9
  1. 4
      Source/control.cpp

4
Source/control.cpp

@ -1902,6 +1902,9 @@ void DrawChr()
CelDraw(SCREEN_X, 351 + SCREEN_Y, pChrPanel, 1, 320);
ADD_PlrStringXY(20, 32, 151, plr[myplr]._pName, COL_WHITE);
#ifdef HELLFIRE
ADD_PlrStringXY(168, 32, 299, ClassStrTbl[plr[myplr]._pClass], COL_WHITE);
#else
if (plr[myplr]._pClass == PC_WARRIOR) {
ADD_PlrStringXY(168, 32, 299, "Warrior", COL_WHITE);
#ifndef SPAWN
@ -1911,6 +1914,7 @@ void DrawChr()
ADD_PlrStringXY(168, 32, 299, "Sorceror", COL_WHITE);
#endif
}
#endif
sprintf(chrstr, "%i", plr[myplr]._pLevel);
ADD_PlrStringXY(66, 69, 109, chrstr, COL_WHITE);

Loading…
Cancel
Save