| 246 | } |
| 247 | |
| 248 | static bool UopDecompressBlock(const UopFileEntry *block, uint8_t *dst, int fileId) |
| 249 | { |
| 250 | assert(block); |
| 251 | assert(fileId >= 0 && fileId <= countof(g_FileManager.m_AnimationFrame)); |
| 252 | uint8_t *src = |
| 253 | g_FileManager.m_AnimationFrame[fileId].Start + block->Offset + block->MetadataSize; |
| 254 | return DecompressBlock(block, dst, src); |
| 255 | } |
| 256 | |
| 257 | std::vector<uint8_t> CUopMappedFile::GetMeta(const UopFileEntry *block) |
| 258 | { |
no test coverage detected