From 11580c3454a1c86cdf738514d9e7697574e73710 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 11 Feb 2024 09:53:10 -0500 Subject: [PATCH] Fix --- LEGO1/lego/legoomni/src/common/legogamestate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/lego/legoomni/src/common/legogamestate.cpp b/LEGO1/lego/legoomni/src/common/legogamestate.cpp index c21a4c1c..8844049f 100644 --- a/LEGO1/lego/legoomni/src/common/legogamestate.cpp +++ b/LEGO1/lego/legoomni/src/common/legogamestate.cpp @@ -126,7 +126,7 @@ MxResult LegoGameState::Save(MxULong p_slot) MxResult result; InfocenterState* infocenterState = (InfocenterState*) GameState()->GetState("InfocenterState"); - if (!infocenterState || infocenterState->GetNameLetter(0) == NULL) { + if (!infocenterState || !infocenterState->DoesNameExist()) { result = SUCCESS; } else {