Disable threaded font loading on Windows because it's unreliable. Would be nice to fix this properly one day...

This commit is contained in:
John Popplewell 2006-09-18 19:14:00 +00:00
parent c950cc454d
commit 7c3f7ad0b7

View file

@ -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