mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 17:08:44 +00:00
Provide a diagnostic message for the two 32-bit related static_asserts
This commit is contained in:
parent
6d8bee9316
commit
1dedcee739
2 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue