Update Decompressor.cpp

This commit is contained in:
MegaMech
2024-05-05 13:03:01 -06:00
committed by Lywx
parent ab073f5706
commit d84de4189a
-2
View File
@@ -46,9 +46,7 @@ DataChunk* Decompressor::DecodeTKMK00(const std::vector<uint8_t>& buffer, const
const auto decompressed = new uint8_t[size];
const auto rgba = new uint8_t[size];
SPDLOG_INFO("RUN?");
tkmk00_decode(in_buf, decompressed, rgba, alpha);
SPDLOG_INFO("RUN2?");
gCachedChunks[offset] = new DataChunk{ rgba, size };
return gCachedChunks[offset];
}