Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Correct params on svcContinueDebugEvent, made can compile with latest…
Browse files Browse the repository at this point in the history
… devkitPro again
  • Loading branch information
mdbell committed Jun 19, 2020
1 parent 8e8a75d commit 6e89560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/source/noexs/source/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Result Gecko::Debugger::detatch(){
Result Gecko::Debugger::resume(){
RETURN_NOT_ATTACHED();
flushEvents();
return svcContinueDebugEvent(handle, 4 | 2 | 1, 0, 0);
return svcContinueDebugEvent(handle, 4 | 2 | 1, 0); //TODO: TID
}

Result Gecko::Debugger::pause(){
Expand Down

0 comments on commit 6e89560

Please sign in to comment.