1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-18 08:22:04 +00:00

thermosphere: fix bug in debug.c

This commit is contained in:
TuxSH 2020-02-02 01:12:06 +00:00
parent 036882f162
commit 914790be01

View file

@ -535,7 +535,7 @@ GDB_DECLARE_VERBOSE_HANDLER(Continue)
FOREACH_BIT (tmp, t, curMask) {
// Set/unset stepping range for all threads affected by this command
debugManagerSetSteppingRange(t - 1, ssStartAddr, ssEndAddr);
debugManagerSetSteppingRange(t, ssStartAddr, ssEndAddr);
}
parsedCoreList |= curMask;