From c57bbf5619ed2ff084da37985c1f7a3134ce765a Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Tue, 7 Feb 2023 21:29:02 +0200 Subject: [PATCH] Fix stupid statefile warning bug. --- savestate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/savestate.cpp b/savestate.cpp index 7ba4bc2e..42bf531f 100644 --- a/savestate.cpp +++ b/savestate.cpp @@ -133,7 +133,7 @@ bool is_savestate_incompatible(void) } #endif #ifdef WITH_PPC - if (currprefs.ppc_model) { + if (currprefs.ppc_model[0]) { dowarn = 1; } #endif -- 2.47.3