mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 09:36:35 +00:00
thermosphere: fix bug in debug.c
This commit is contained in:
parent
036882f162
commit
914790be01
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ GDB_DECLARE_VERBOSE_HANDLER(Continue)
|
||||||
|
|
||||||
FOREACH_BIT (tmp, t, curMask) {
|
FOREACH_BIT (tmp, t, curMask) {
|
||||||
// Set/unset stepping range for all threads affected by this command
|
// Set/unset stepping range for all threads affected by this command
|
||||||
debugManagerSetSteppingRange(t - 1, ssStartAddr, ssEndAddr);
|
debugManagerSetSteppingRange(t, ssStartAddr, ssEndAddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
parsedCoreList |= curMask;
|
parsedCoreList |= curMask;
|
||||||
|
|
Loading…
Reference in a new issue