From 9b751d6469093c370dc9ea2e8a49b5eff70942e6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 18 Mar 2023 12:30:49 +0100 Subject: [PATCH] use GAMENAMELOWERCASE for defining GAME_DIR. This was handled inconsistently in different parts of the Mac backend. --- source/core/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/version.h b/source/core/version.h index 1046ab13e..2a026f63e 100644 --- a/source/core/version.h +++ b/source/core/version.h @@ -84,7 +84,7 @@ const char *GetVersionString(); #define NETGAMEVERSION 1 #if defined(__APPLE__) || defined(_WIN32) -#define GAME_DIR GAMENAME +#define GAME_DIR GAMENAMELOWERCASE #else #define GAME_DIR ".config/" GAMENAMELOWERCASE #endif