From cf915a142c649ee27bebd27f0b9b94ecc4a59834 Mon Sep 17 00:00:00 2001 From: terminx Date: Tue, 25 Jun 2019 11:29:27 +0000 Subject: [PATCH] Cosmetic change git-svn-id: https://svn.eduke32.com/eduke32@7709 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/gamestructures.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/duke3d/src/gamestructures.cpp b/source/duke3d/src/gamestructures.cpp index 3ae53ec1a..aa681e5e0 100644 --- a/source/duke3d/src/gamestructures.cpp +++ b/source/duke3d/src/gamestructures.cpp @@ -68,14 +68,15 @@ const memberlabel_t SectorLabels[] = { LABEL_SETUP(sector, floorstat, SECTOR_FLOORSTAT), LABEL_SETUP(sector, ceilingpicnum, SECTOR_CEILINGPICNUM), - { "ceilingslope", SECTOR_CEILINGSLOPE, sizeof(sector[0].ceilingheinum), 0, offsetof(usectortype, ceilingheinum) }, + LABEL_SETUP_UNMATCHED(sector, ceilingheinum, "ceilingslope", SECTOR_CEILINGSLOPE), + LABEL_SETUP(sector, ceilingshade, SECTOR_CEILINGSHADE), LABEL_SETUP(sector, ceilingpal, SECTOR_CEILINGPAL), LABEL_SETUP(sector, ceilingxpanning, SECTOR_CEILINGXPANNING), LABEL_SETUP(sector, ceilingypanning, SECTOR_CEILINGYPANNING), LABEL_SETUP(sector, floorpicnum, SECTOR_FLOORPICNUM), - { "floorslope", SECTOR_FLOORSLOPE, sizeof(sector[0].floorheinum), 0, offsetof(usectortype, floorheinum) }, + LABEL_SETUP_UNMATCHED(sector, floorheinum, "floorslope", SECTOR_FLOORSLOPE), LABEL_SETUP(sector, floorshade, SECTOR_FLOORSHADE), LABEL_SETUP(sector, floorpal, SECTOR_FLOORPAL), LABEL_SETUP(sector, floorxpanning, SECTOR_FLOORXPANNING),