FIX: RetrictItem SunSong issue (#839)

Thanks @vaguerant
This commit is contained in:
PurpleHato
2022-07-19 04:47:37 +02:00
committed by GitHub
parent e871b53afc
commit 235cef6abf

View File

@@ -409,7 +409,9 @@ void GameState_Update(GameState* gameState) {
// Unrestricted Items
if (CVar_GetS32("gNoRestrictItems", 0) != 0) {
if (gGlobalCtx) {
u8 sunsBackup = gGlobalCtx->interfaceCtx.restrictions.sunsSong;
memset(&gGlobalCtx->interfaceCtx.restrictions, 0, sizeof(gGlobalCtx->interfaceCtx.restrictions));
gGlobalCtx->interfaceCtx.restrictions.sunsSong = sunsBackup;
}
}