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

2 comments on commit ae1566a

@kris2314
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do i download strato from here help plz

@blueboi77
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably look at one of the forks for a download

Please sign in to comment.