aboutsummaryrefslogtreecommitdiff
path: root/tools/TexturePacker
diff options
context:
space:
mode:
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); }