libstrat: fix unconverted _WITH_ASSERTs

This commit is contained in:
Michael Scire 2020-02-24 05:01:41 -08:00
parent 8ccac1d18a
commit 80e1847534
7 changed files with 16 additions and 16 deletions

View file

@ -25,7 +25,7 @@ namespace ams::dd {
R_TRY_CATCH(svcQueryIoMapping(&virtual_addr, aligned_addr, aligned_size)) {
/* Official software handles this by returning 0. */
R_CATCH(svc::ResultNotFound) { return 0; }
} R_END_TRY_CATCH_WITH_ASSERT;
} R_END_TRY_CATCH_WITH_ABORT_UNLESS;
return static_cast<uintptr_t>(virtual_addr + offset);
}