Merge pull request #3244 from Moonif/master

Update unix.c to add a missing semicolon for Apple build
This commit is contained in:
Jasmine Iwanek
2023-04-12 05:36:09 -04:00
committed by GitHub

View File

@@ -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