Ricardo
Dead Guybrush in netgames
Easily fixable.
src/p_spec.c, line 4887
The current code:
Should be this instead:
src/p_spec.c, line 4887
The current code:
Code:
if (hexStg[n] > 0x29 && hexStg[n] < 0x40) // 0-9
Code:
if (hexStg[n] >= '0' && hexStg[n] <= '9') // 0-9
Last edited by a moderator: