service/gsp: Fixed typo in FlushDataCache IPC::RequestParser creation

This commit is contained in:
NarcolepticK 2018-06-27 04:01:35 -04:00
parent c43f1ed088
commit c6554f1fbc

View file

@ -309,7 +309,7 @@ void GSP_GPU::SetBufferSwap(Kernel::HLERequestContext& ctx) {
}
void GSP_GPU::FlushDataCache(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp(ctx, 0x9, 2, 2);
IPC::RequestParser rp(ctx, 0x8, 2, 2);
u32 address = rp.Pop<u32>();
u32 size = rp.Pop<u32>();
auto process = rp.PopObject<Kernel::Process>();