From 9c408fc26c0f2b36ab75108439f3319c0d1ce9f1 Mon Sep 17 00:00:00 2001 From: terminx Date: Wed, 31 Jan 2018 04:13:25 +0000 Subject: [PATCH] Useless assertion that only fires in alternate universes git-svn-id: https://svn.eduke32.com/eduke32@6634 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/include/build.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/build/include/build.h b/source/build/include/build.h index 87b767e3f..0b9b2e6d7 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -337,6 +337,11 @@ typedef walltypevx walltype; typedef uwalltypevx uwalltype; #endif +// this is probably never going to be necessary +EDUKE32_STATIC_ASSERT(sizeof(sectortype) == sizeof(usectortype)); +EDUKE32_STATIC_ASSERT(sizeof(walltype) == sizeof(uwalltype)); +EDUKE32_STATIC_ASSERT(sizeof(spritetype) == sizeof(uspritetype)); + #ifdef NEW_MAP_FORMAT # define SECTORVX_SZ1 offsetof(sectortypevx, ceilingpicnum)