Browse Source

Fix lightning resistance on char screen

pull/25/head
Anders Jenbo 8 years ago
parent
commit
35e8aa42c5
  1. 2
      Source/control.cpp

2
Source/control.cpp

@ -1992,7 +1992,7 @@ void __cdecl DrawChr()
ADD_PlrStringXY(257, 304, 300, a4, a5[0]);
v11 = plr[myplr]._pLghtResist;
a5[0] = v11 != 0;
if ( v11 >= 75 )
if ( v11 < 75 )
{
sprintf(a4, "%i%%", v11);
}

Loading…
Cancel
Save