From 998caee8e197aec9af376cfd396531e3b1f2f754 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Mon, 4 Nov 2024 09:33:25 +0100 Subject: [PATCH] Do not disable local threads in sprite example This is no longer needed, as not using it no longer causes a crash since we disabled local thread support in gcc. --- _includes/samples/sprite/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_includes/samples/sprite/main.c b/_includes/samples/sprite/main.c index 77904cf..6fd391e 100644 --- a/_includes/samples/sprite/main.c +++ b/_includes/samples/sprite/main.c @@ -5,7 +5,6 @@ #include #define STB_IMAGE_IMPLEMENTATION -#define STBI_NO_THREAD_LOCALS #include PSP_MODULE_INFO("texture", 0, 1, 0); @@ -162,4 +161,4 @@ int main() { free(texture); return 0; -} \ No newline at end of file +}