From 4ce39766d7d7d0d559521189b2822cf2ffdf1b5e Mon Sep 17 00:00:00 2001 From: emb <> Date: Mon, 23 Feb 2015 23:12:30 -0600 Subject: [PATCH] Fix mingw compiler error (font was missing cstdio for memset) --- RetroFE/Source/Graphics/Font.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RetroFE/Source/Graphics/Font.cpp b/RetroFE/Source/Graphics/Font.cpp index 89e1e5d..d67a87a 100644 --- a/RetroFE/Source/Graphics/Font.cpp +++ b/RetroFE/Source/Graphics/Font.cpp @@ -19,6 +19,7 @@ #include #include #include +#include Font::Font() : Texture(NULL)