1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-10 02:33:00 +00:00

get_vernum()

This commit is contained in:
Zeno Rogue
2019-05-22 01:14:11 +02:00
parent 6012cbc8e2
commit 28f5b04b83
2 changed files with 3 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ struct charstyle_old {
void hread(hstream& hs, charstyle& cs) {
// before 0xA61A there was no eyecolor
if(hs.vernum < 0xA61A) {
if(hs.get_vernum() < 0xA61A) {
charstyle_old cso;
hread_raw(hs, cso);
cs.charid = cso.charid;