From 21004626d0a0d7d53746e59fbc0ec229d17f5b50 Mon Sep 17 00:00:00 2001 From: Moonif Date: Sun, 9 Apr 2023 00:51:59 +0400 Subject: [PATCH] Update unix.c Add missing semicolon for Apple build --- src/unix/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/unix.c b/src/unix/unix.c index 478b5309f..23390fae9 100644 --- a/src/unix/unix.c +++ b/src/unix/unix.c @@ -814,7 +814,7 @@ void plat_get_global_config_dir(char *strptr) { #ifdef __APPLE__ - char *prefPath = SDL_GetPrefPath(NULL, "net.86Box.86Box") + char *prefPath = SDL_GetPrefPath(NULL, "net.86Box.86Box"); #else char *prefPath = SDL_GetPrefPath(NULL, "86Box"); #endif