- use floats for vertices.

This commit is contained in:
Christoph Oelckers 2022-01-27 18:40:17 +01:00
parent cf17cffb26
commit cd55658786
13 changed files with 65 additions and 62 deletions

View file

@ -606,8 +606,8 @@ FSerializer &Serialize(FSerializer &arc, const char *key, walltype &c, walltype
{
if (arc.BeginObject(key))
{
arc("x", c.__wall_int_pos.X, def->__wall_int_pos.X)
("y", c.__wall_int_pos.Y, def->__wall_int_pos.Y)
arc("x", c.__wall_pos.X, def->__wall_pos.X)
("y", c.__wall_pos.Y, def->__wall_pos.Y)
("point2", c.point2, def->point2)
("nextwall", c.nextwall, def->nextwall)
("nextsector", c.nextsector, def->nextsector)