diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-03-24 21:27:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-24 21:27:07 -0600 |
| commit | 81f4371c2083c5f31c8abc07592d25c9f69741a6 (patch) | |
| tree | 362abce06cee12f726d175df261c44a12108a279 /src/factories/TextureFactory.cpp | |
| parent | cd7dd6f59a9b0ffb867fcd7b80a6c05def701088 (diff) | |
Add Include Factory (#51)
* Add Include Factory
* Fix
* Fixes
* Update
---------
Co-authored-by: = <=>
Diffstat (limited to 'src/factories/TextureFactory.cpp')
| -rw-r--r-- | src/factories/TextureFactory.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/factories/TextureFactory.cpp b/src/factories/TextureFactory.cpp index d30cb7b..9d24c5c 100644 --- a/src/factories/TextureFactory.cpp +++ b/src/factories/TextureFactory.cpp @@ -174,8 +174,10 @@ ExportResult TextureCodeExporter::Export(std::ostream &write, std::shared_ptr<IP const auto sz = data.size(); if (Companion::Instance->IsDebug()) { - write << "// size: 0x" << std::hex << std::uppercase << sz << "\n"; + write << "// size: 0x" << std::hex << std::uppercase << sz; } + + write << "\n"; } return offset + data.size(); } |
