diff options
author | Arne Morten Kvarving <cptspiff@gmail.com> | 2015-02-16 15:27:06 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-02-16 18:16:03 +0100 |
commit | 0c2e2418b4014103d6f7b745c440d659b0d8fb09 (patch) | |
tree | 66db30abe10b8f431ef607b47388ff1075b97c93 /tools/depends | |
parent | 03f78a622330928cd620a01e2647b4161581f341 (diff) |
[TexturePacker] - fix compilation with c++11
requires a space around string macros when concating
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/native/TexturePacker/src/TexturePacker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/TexturePacker/src/TexturePacker.cpp b/tools/depends/native/TexturePacker/src/TexturePacker.cpp index 9d093f280d..a345ebd2dd 100644 --- a/tools/depends/native/TexturePacker/src/TexturePacker.cpp +++ b/tools/depends/native/TexturePacker/src/TexturePacker.cpp @@ -389,7 +389,7 @@ int createBundle(const std::string& InputDir, const std::string& OutputFile, dou CXBTFFrame frame = createXBTFFrame(frames.frameList[j].rgbaImage, writer, maxMSE, flags); frame.SetDuration(frames.frameList[j].delay); file.GetFrames().push_back(frame); - printf("%s%c (%d,%d @ %"PRIu64" bytes)\n", GetFormatString(frame.GetFormat()), frame.HasAlpha() ? ' ' : '*', + printf("%s%c (%d,%d @ %" PRIu64 " bytes)\n", GetFormatString(frame.GetFormat()), frame.HasAlpha() ? ' ' : '*', frame.GetWidth(), frame.GetHeight(), frame.GetUnpackedSize()); } } |