Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-23 10:31:45 +0000
committerStijn Buys <ingar@osirion.org>2008-08-23 10:31:45 +0000
commitdaf84bb6292eb5bf5434889a887535ec54c21b6b (patch)
tree1674d55039da9a100bf1d2a4a8596b793b6841a8 /src/render
parent7668b60981dadeced3b5c8ee27c16575d59844de (diff)
fixes for gcc 4.3.1, added g_devel
Diffstat (limited to 'src/render')
-rw-r--r--src/render/textures.cc2
-rw-r--r--src/render/tga.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/render/textures.cc b/src/render/textures.cc
index d69fa68..2bc6c05 100644
--- a/src/render/textures.cc
+++ b/src/render/textures.cc
@@ -4,7 +4,7 @@
the terms of the GNU General Public License version 2
*/
-
+#include <string.h>
#include "render/gl.h"
#include "render/textures.h"
diff --git a/src/render/tga.cc b/src/render/tga.cc
index fb65910..6a85130 100644
--- a/src/render/tga.cc
+++ b/src/render/tga.cc
@@ -25,7 +25,7 @@
TGA multi-byte integer values have LSB first
*/
-
+#include <string.h>
#include <fstream>
#include <sstream>