mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-03-04 01:15:25 +03:00
The iterations of the inner loop for sector deswizzling was miscalculated as `SectorWidth * SectorHeight` while the result was correct at `32`, it should be determined by the amount of sector lines within a GOB i.e.: `(GobWidth / SectorWidth) * GobHeight`.