kernel: Switch to atmosphere style macros

This commit is contained in:
GPUCode
2023-12-11 22:08:24 +02:00
parent 5bcdcffd96
commit 0fd8892892
23 changed files with 308 additions and 453 deletions

View File

@ -239,7 +239,7 @@ ResultCode HLERequestContext::WriteToOutgoingCommandBuffer(u32_le* dst_cmdbuf,
Handle handle = 0;
if (object != nullptr) {
// TODO(yuriks): Figure out the proper error handling for if this fails
handle = dst_process.handle_table.Create(object).Unwrap();
R_ASSERT(dst_process.handle_table.Create(std::addressof(handle), object));
}
dst_cmdbuf[i++] = handle;
}