mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-05-20 00:08:00 +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.