mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-04-28 16:49:25 +03:00
The lock callback would `continue` which would end up skipping over the current item as it applied to the inner loop rather than the outer loop as intended. This has now been fixed by using `break` and a check instead.