Skip to content

Commit

Permalink
Minor compression improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-zhao committed Nov 16, 2024
1 parent cba8bc1 commit 9233c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compressors/gfxcomp_wbmw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void compressPlane(
{
auto blocks = rle::process(source, sourceEnd);

rle::optimize(blocks, 1, 0x7f, 0x7f);
rle::optimize(blocks, 1, 0x80, 0x7f);

// Now emit them
for (auto& block : blocks)
Expand Down

0 comments on commit 9233c8b

Please sign in to comment.