From 01ac3d1a55ddcc65a2dfab2a977629bf29e1a09b Mon Sep 17 00:00:00 2001 From: Xawotihs Date: Sat, 11 Dec 2010 22:46:15 +0000 Subject: [PATCH] - cleanup image dependencies in QT project --- JGE/include/JRenderer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JGE/include/JRenderer.h b/JGE/include/JRenderer.h index 2d91b3e25..9eaca9ba0 100644 --- a/JGE/include/JRenderer.h +++ b/JGE/include/JRenderer.h @@ -16,7 +16,7 @@ #include #include -#ifndef IOS +#if (!defined IOS) && (!defined QT_CONFIG) #include #endif //IOS @@ -572,7 +572,7 @@ private: bool mVRAM; }; -#ifndef IOS +#if (!defined IOS) && (!defined QT_CONFIG) void LoadJPG(TextureInfo &textureInfo, const char *filename, int mode = 0, int TextureFormat = TEXTURE_FORMAT); int LoadPNG(TextureInfo &textureInfo, const char *filename, int mode = 0, int TextureFormat = TEXTURE_FORMAT); void LoadGIF(TextureInfo &textureInfo, const char *filename, int mode = 0, int TextureFormat = TEXTURE_FORMAT);