summaryrefslogtreecommitdiff
path: root/src/utils/Decompressor.cpp
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2024-05-05 08:36:47 -0600
committerLywx <kiritodev01@gmail.com>2024-05-05 13:03:01 -0600
commitab073f570643d096a6ef895b8374f601a59aaae7 (patch)
tree7087cd4144d3463a9b4c3763abebe50cc038f797 /src/utils/Decompressor.cpp
parentf24e7ec63b81bfe24e4daa795cc1e1d690e789cd (diff)
Update Decompressor.cpp
Diffstat (limited to 'src/utils/Decompressor.cpp')
-rw-r--r--src/utils/Decompressor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/Decompressor.cpp b/src/utils/Decompressor.cpp
index b12ba0e..2dc808e 100644
--- a/src/utils/Decompressor.cpp
+++ b/src/utils/Decompressor.cpp
@@ -49,7 +49,7 @@ DataChunk* Decompressor::DecodeTKMK00(const std::vector<uint8_t>& buffer, const
SPDLOG_INFO("RUN?");
tkmk00_decode(in_buf, decompressed, rgba, alpha);
SPDLOG_INFO("RUN2?");
- gCachedChunks[offset] = new DataChunk{ decompressed, size };
+ gCachedChunks[offset] = new DataChunk{ rgba, size };
return gCachedChunks[offset];
}