summaryrefslogtreecommitdiff
path: root/src/preprocess/CompTool.cpp
diff options
context:
space:
mode:
authorLywx <kiritodev01@gmail.com>2026-07-02 20:42:38 -0600
committerGitHub <noreply@github.com>2026-07-02 20:42:38 -0600
commit58527d7bf8778bc67179454a19ad8c84a74aff13 (patch)
tree37df9df3eb558977b84b5a33b8143f3859c5d057 /src/preprocess/CompTool.cpp
parentb42a4fa16f7a75e2a96a7c107e6359c80b685863 (diff)
Implemented UI Framework (#225)
* Implemented base renderer among main UI framework implementation * Implemented basic geo layout rendering * Implemented animation support among fixing lightning among other things * Implemented multiple ui factories for sm64 * Implemented first iteration of the custom sequence driver * Added export buttons on multiple factories * More sequence player fixes among f3dex2 working correctly * Implemented pm64 viewers * Implemented audio support for pm64 * Fully implemented pm64 factories * Implemented more sm64 factories * Added tons of missing sf64 factories * Implemented all assets among sf64 wrong padding * Run formatting * Fixed wrong spacing on gfx too * Fixed CI * Fixed bad pipeline
Diffstat (limited to 'src/preprocess/CompTool.cpp')
-rw-r--r--src/preprocess/CompTool.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/preprocess/CompTool.cpp b/src/preprocess/CompTool.cpp
index da0afe5..6ba3694 100644
--- a/src/preprocess/CompTool.cpp
+++ b/src/preprocess/CompTool.cpp
@@ -93,7 +93,8 @@ std::vector<uint8_t> CompTool::Decompress(std::vector<uint8_t> rom) {
v_size = p_size;
break;
case CompType::COMPRESSED:
- decoded = Decompressor::Decode(std::vector(bytes, bytes + p_size), 0, CompressionType::MIO0, p_size, true);
+ decoded =
+ Decompressor::Decode(std::vector(bytes, bytes + p_size), 0, CompressionType::MIO0, p_size, true);
bytes = decoded->data;
v_size = decoded->size;
break;