Skip to content

Commit

Permalink
Fix accidental recursion with trap handling
Browse files Browse the repository at this point in the history
  • Loading branch information
TheASVigilante committed Apr 28, 2024
1 parent 83111c2 commit ae1566a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/cpp/skyline/common/trap_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace skyline {

bool TrapManager::TrapHandler(u8 *address, bool write) {
assert(staticTrap != nullptr);
return staticTrap->TrapHandler(address, write);
return staticTrap->HandleTrap(address, write);
}

bool TrapManager::HandleTrap(u8 *address, bool write) {
Expand Down

0 comments on commit ae1566a

Please sign in to comment.