diff options
author | Lukas Rusak <lorusak@gmail.com> | 2023-05-04 20:09:25 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2023-05-12 20:43:27 -0700 |
commit | d407f2be4efb8691348269d552c35f09df86542e (patch) | |
tree | 4140ca0bb4d43edc8c7e6c9197030502e6a1ca66 /tools | |
parent | 3b99e3a4a13c5b5f169770b1edb2b6e0204cc38e (diff) |
TexturePacker: remove unnecessary string manipulation
Signed-off-by: Lukas Rusak <lorusak@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/native/TexturePacker/src/TexturePacker.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/depends/native/TexturePacker/src/TexturePacker.cpp b/tools/depends/native/TexturePacker/src/TexturePacker.cpp index 54bc036305..e1827aab2a 100644 --- a/tools/depends/native/TexturePacker/src/TexturePacker.cpp +++ b/tools/depends/native/TexturePacker/src/TexturePacker.cpp @@ -298,9 +298,6 @@ int TexturePacker::createBundle(const std::string& InputDir, fullPath += file.GetPath(); std::string output = file.GetPath(); - output = output.substr(0, 40); - while (output.size() < 46) - output += ' '; DecodedFrames frames; bool loaded = decoderManager.LoadFile(fullPath, frames); |