From 30e5466d90ddccb5905bd927b745515b53834821 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Thu, 23 May 2024 21:24:52 -0400 Subject: [PATCH] libretro build fix on apple --- shell/libretro/oslib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/libretro/oslib.cpp b/shell/libretro/oslib.cpp index cf70ad53e..c577ff0d9 100644 --- a/shell/libretro/oslib.cpp +++ b/shell/libretro/oslib.cpp @@ -130,7 +130,7 @@ std::string getTextureDumpPath() } -#ifdef _WIN32 +#if defined(_WIN32) || defined(__APPLE__) void os_SetThreadName(const char *name) { } #endif