From 7c3f7ad0b79caf8e7a273c2df67cb9119252ea4d Mon Sep 17 00:00:00 2001 From: John Popplewell Date: Mon, 18 Sep 2006 19:14:00 +0000 Subject: [PATCH] Disable threaded font loading on Windows because it's unreliable. Would be nice to fix this properly one day... --- src/fonts.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fonts.h b/src/fonts.h index 20f3d08a3..67866248c 100644 --- a/src/fonts.h +++ b/src/fonts.h @@ -19,7 +19,8 @@ #include "compiler.h" -#ifndef FORKED_FONTS +/* Disable threaded font loading on Windows */ +#if !defined(FORKED_FONTS) && !defined(WIN32) #include "SDL_thread.h" #include "SDL_mutex.h" #else