- allow using the default menu settings classes when none is specified in MENUDEFS.

This commit is contained in:
Christoph Oelckers 2017-02-16 17:45:04 +01:00
commit 4d99b58f96
3 changed files with 13 additions and 3 deletions

View file

@ -544,7 +544,7 @@ void FullGC()
void Barrier(DObject *pointing, DObject *pointed)
{
assert(pointed->GetClass() < (void*)0x1000000000000000);
assert(pointed->GetClass() != nullptr);
assert(pointing == NULL || (pointing->IsBlack() && !pointing->IsDead()));
assert(pointed->IsWhite() && !pointed->IsDead());
assert(State != GCS_Finalize && State != GCS_Pause);