From 9c3dc2773438935335da266be7bbd8e06a6c5229 Mon Sep 17 00:00:00 2001 From: KrahJohlito Date: Mon, 30 Aug 2021 20:55:56 +0930 Subject: [PATCH] gui.c fix comparison to int --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.c b/src/gui.c index 22afc9f0c..ea13ed0db 100644 --- a/src/gui.c +++ b/src/gui.c @@ -1477,7 +1477,7 @@ void guiMainLoop(void) guiResetNotifications(); guiCheckNotifications(1, 1); - if (gOPLPart[0] != NULL) + if (gOPLPart[0] != '\0') showPartPopup = 1; while (!gTerminate) {