aboutsummaryrefslogtreecommitdiff
path: root/tools/TexturePacker/XBTFWriter.cpp
diff options
context:
space:
mode:
authortheuni <theuni@svn>2010-09-15 01:33:33 +0000
committertheuni <theuni@svn>2010-09-15 01:33:33 +0000
commit348d4e40e16ac75b7a24c645c1b8a540ddceeed8 (patch)
treeaec82ba6a7f7f644d3eef518243665cfceab9794 /tools/TexturePacker/XBTFWriter.cpp
parent2617c0639135e6df493609c35958d7c47330ffb0 (diff)
fixed: includes for TexturePacker
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@33819 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/TexturePacker/XBTFWriter.cpp')
-rw-r--r--tools/TexturePacker/XBTFWriter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/TexturePacker/XBTFWriter.cpp b/tools/TexturePacker/XBTFWriter.cpp
index b897754bd5..4755db1ed1 100644
--- a/tools/TexturePacker/XBTFWriter.cpp
+++ b/tools/TexturePacker/XBTFWriter.cpp
@@ -23,6 +23,8 @@
#include "EndianSwap.h"
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
+#include <malloc.h>
+#include <memory.h>
#define WRITE_STR(str, size, file) fwrite(str, size, 1, file)
#define WRITE_U32(i, file) { uint32_t _n = Endian_SwapLE32(i); fwrite(&_n, 4, 1, file); }