Skip to content

Commit

Permalink
Fix #904 caused by incorrect function call
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Jan 1, 2025
1 parent 235d3f2 commit b5fc595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/TilesRendererBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export class TilesRendererBase {
// save the tile in a separate "used set" so we can mark it as unused
// before the next tile set traversal
this.usedSet.add( tile );
this.lruCache.markUnused( tile );
this.lruCache.markUsed( tile );

}

Expand Down

0 comments on commit b5fc595

Please sign in to comment.