diff --git a/libstratosphere/source/os/os_transfer_memory.cpp b/libstratosphere/source/os/os_transfer_memory.cpp index 00456e34..53a23288 100644 --- a/libstratosphere/source/os/os_transfer_memory.cpp +++ b/libstratosphere/source/os/os_transfer_memory.cpp @@ -122,6 +122,9 @@ namespace ams::os { tmem->address = mapped_address; tmem->state = TransferMemoryType::State_Mapped; + /* Set output address. */ + *out = mapped_address; + return ResultSuccess(); }