hle_ipc: Rename ReadBuffer to ReadBufferCopy

Indicates explicitly that a copy is occurring
This commit is contained in:
ameerj 2022-12-25 14:30:21 -05:00
parent 7c1bf68bb4
commit 59c0f85407
3 changed files with 6 additions and 4 deletions

View file

@ -228,7 +228,8 @@ private:
return;
}
control = ctx.ReadBuffer();
// TODO: Can this be a span?
control = ctx.ReadBufferCopy();
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ResultSuccess);