Skip to content

Commit

Permalink
gui.c fix comparison to int
Browse files Browse the repository at this point in the history
  • Loading branch information
KrahJohlito committed Aug 30, 2021
1 parent 4f6bd1d commit 9c3dc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui.c
Expand Up @@ -1477,7 +1477,7 @@ void guiMainLoop(void)
guiResetNotifications();
guiCheckNotifications(1, 1);

if (gOPLPart[0] != NULL)
if (gOPLPart[0] != '\0')
showPartPopup = 1;

while (!gTerminate) {
Expand Down

0 comments on commit 9c3dc27

Please sign in to comment.