Merge pull request #128 from thknepper/fix-cross-compile

Explicit use signed char for included font data to enable cross-compile on ARM-based systems
This commit is contained in:
Laurent Gomila 2011-11-29 22:38:54 -08:00
commit 92f14fa853

View File

@ -338,7 +338,7 @@ const Font& Font::GetDefaultFont()
// Load the default font on first call
if (!loaded)
{
static const char data[] =
static const signed char data[] =
{
#include <SFML/Graphics/Arial.hpp>
};