summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/factories/TextureFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/factories/TextureFactory.cpp b/src/factories/TextureFactory.cpp
index 6e3142f..a2f881e 100644
--- a/src/factories/TextureFactory.cpp
+++ b/src/factories/TextureFactory.cpp
@@ -150,7 +150,7 @@ void TextureCodeExporter::Export(std::ostream &write, std::shared_ptr<IParsedDat
}
if(start == offset){
- write << GetSafeNode<std::string>(node, "ctype", "static const u8") << " " << name << "[][0x" << texture->mBuffer.size() << std::hex << std::uppercase << "] = {\n";
+ write << GetSafeNode<std::string>(node, "ctype", "static const u8") << " " << name << "[][" << texture->mBuffer.size() << "] = {\n";
}
write << tab << "{\n";