mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
Removed alignment for object_ids in ipcParseDomainResponse, since official sw doesn't have this.
This commit is contained in:
parent
7ae659c2cb
commit
68846af044
@ -718,7 +718,7 @@ static inline Result ipcParseDomainResponse(IpcParsedCommand* r, size_t sizeof_r
|
||||
|
||||
hdr = (DomainResponseHeader*) r->Raw;
|
||||
r->Raw = (void*)(((uintptr_t) r->Raw) + sizeof(DomainResponseHeader));
|
||||
object_ids = (u32*)((((uintptr_t) r->Raw) + sizeof_raw + 3) & ~3);
|
||||
object_ids = (u32*)(((uintptr_t) r->Raw) + sizeof_raw);//Official sw doesn't align this.
|
||||
|
||||
r->IsDomainResponse = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user