- fixed: mapthinghexen_t::flags needs to be unsigned.

This is necessary so that an incorrectly set 0x8000 bit won't enable all high flags.
This commit is contained in:
Christoph Oelckers 2016-07-05 01:17:12 +02:00
parent b81876698f
commit b2a88c1abd

View file

@ -334,7 +334,7 @@ struct mapthinghexen_t
SWORD z;
SWORD angle;
SWORD type;
SWORD flags;
WORD flags;
BYTE special;
BYTE args[5];
};