mirror of
https://github.com/love2d/love.git
synced 2026-08-19 20:19:42 +02:00
iOS: Fix simulator build
This commit is contained in:
@@ -29,6 +29,12 @@ static void loveSTBIAssert(bool test, const char *teststr)
|
|||||||
throw love::Exception("Could not decode image (stb_image assertion '%s' failed)", teststr);
|
throw love::Exception("Could not decode image (stb_image assertion '%s' failed)", teststr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround when building for iOS Simulator with deployment target=8.0
|
||||||
|
#include "common/config.h"
|
||||||
|
#if defined(LOVE_IOS) && defined(TARGET_OS_SIMULATOR)
|
||||||
|
#define STBI_NO_THREAD_LOCALS
|
||||||
|
#endif
|
||||||
|
|
||||||
// stb_image
|
// stb_image
|
||||||
#define STBI_ONLY_JPEG
|
#define STBI_ONLY_JPEG
|
||||||
// #define STBI_ONLY_PNG
|
// #define STBI_ONLY_PNG
|
||||||
|
|||||||
Reference in New Issue
Block a user