Skip to content

Commit

Permalink
[CPU] Fix XEX2 delta patching.
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbed committed Nov 24, 2018
1 parent 77f9e15 commit 5679b0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/xenia/cpu/lzx.cc
Expand Up @@ -112,6 +112,7 @@ int lzx_decompress(const void* lzx_data, size_t lzx_len, void* dest,
std::memset(lzxd->window, 0, window_data_len);
std::memcpy(lzxd->window + (window_size - window_data_len), window_data,
window_data_len);
lzxd->ref_data_size = (uint32_t)window_data_len;
}

result_code = lzxd_decompress(lzxd, (off_t)dest_len);
Expand Down

0 comments on commit 5679b0f

Please sign in to comment.