From 1dedcee7391370f919b38ce2a5c95728ba1a9d4e Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 18 May 2024 10:24:00 +0200 Subject: [PATCH] Provide a diagnostic message for the two 32-bit related static_asserts --- src/common/engine/i_interface.cpp | 8 +++++++- src/playsim/p_effect.h | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/common/engine/i_interface.cpp b/src/common/engine/i_interface.cpp index 7030194ea6..dfedbe8eec 100644 --- a/src/common/engine/i_interface.cpp +++ b/src/common/engine/i_interface.cpp @@ -6,7 +6,13 @@ #include "gstrings.h" #include "version.h" -static_assert(sizeof(void*) == 8, "32 builds are not supported"); +static_assert(sizeof(void*) == 8, + "Only LP64/LLP64 builds are officially supported. " + "Please do not attempt to build for other platforms; " + "even if the program succeeds in a MAP01 smoke test, " + "there are e.g. known visual artifacts " + " " + "that lead to a bad user experience."); // Some global engine variables taken out of the backend code. FStartupScreen* StartWindow; diff --git a/src/playsim/p_effect.h b/src/playsim/p_effect.h index 374aeecfc9..c87aa2c7d6 100644 --- a/src/playsim/p_effect.h +++ b/src/playsim/p_effect.h @@ -88,7 +88,7 @@ struct particle_t FStandaloneAnimation animData; //+16 = 128 }; -static_assert(sizeof(particle_t) == 128); +static_assert(sizeof(particle_t) == 128, "Only LP64/LLP64 is supported"); const uint16_t NO_PARTICLE = 0xffff;