mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-03-03 09:05:21 +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.