Provide a diagnostic message for the two 32-bit related static_asserts

This commit is contained in:
Jan Engelhardt 2024-05-18 10:24:00 +02:00 committed by Rachael Alexanderson
parent 6d8bee9316
commit 1dedcee739
2 changed files with 8 additions and 2 deletions

View file

@ -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 "
"<https://forum.zdoom.org/viewtopic.php?f=7&t=75673> "
"that lead to a bad user experience.");
// Some global engine variables taken out of the backend code.
FStartupScreen* StartWindow;

View file

@ -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;