1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-10 14:11:43 +00:00

os: fix MapTransferMemory output not being set

This commit is contained in:
Michael Scire 2021-10-06 12:07:26 -07:00
parent 4866e80769
commit e1fbf27398

View file

@ -122,6 +122,9 @@ namespace ams::os {
tmem->address = mapped_address;
tmem->state = TransferMemoryType::State_Mapped;
/* Set output address. */
*out = mapped_address;
return ResultSuccess();
}