aboutsummaryrefslogtreecommitdiff
path: root/tools/TexturePacker
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-09-15 00:36:56 +0000
committerjmarshallnz <jmarshallnz@svn>2010-09-15 00:36:56 +0000
commit2617c0639135e6df493609c35958d7c47330ffb0 (patch)
treed4d542df2c35d38cc5bd911c34f4fe759deb3a1b /tools/TexturePacker
parent304098c139c2cbd13f8d288e1e3855f5e05fe1d0 (diff)
cleanup: TexturePacker - get rid of unused defines.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@33817 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/TexturePacker')
-rw-r--r--tools/TexturePacker/XBTFWriter.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/TexturePacker/XBTFWriter.cpp b/tools/TexturePacker/XBTFWriter.cpp
index 6435734d91..b897754bd5 100644
--- a/tools/TexturePacker/XBTFWriter.cpp
+++ b/tools/TexturePacker/XBTFWriter.cpp
@@ -24,9 +24,6 @@
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
-#define TEMP_FILE "temp.xbt"
-#define TEMP_SIZE (10*1024*1024)
-
#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); }
#define WRITE_U64(i, file) { uint64_t _n = i; _n = Endian_SwapLE64(i); fwrite(&_n, 8, 1, file); }