Skip to content

Commit

Permalink
fix(zq): disable unpack cache to fix tile rotate/flip
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Nov 16, 2023
1 parent a6c345e commit fed7b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zq/zq_tiles.cpp
Expand Up @@ -1685,7 +1685,7 @@ void normalize(int32_t tile,int32_t tile2, bool rect_sel, int32_t flip)
{
if(!rect_sel || ((TILECOL(temptile)>=left) && (TILECOL(temptile)<=left+columns-1)))
{
unpack_tile(newtilebuf, temptile, 0, false);
unpack_tile(newtilebuf, temptile, 0, true);

if(flip&1)
{
Expand Down

0 comments on commit fed7b77

Please sign in to comment.