forked from eden-emu/eden
hle_ipc: Rename ReadBufferSpan to ReadBuffer
This commit is contained in:
parent
59c0f85407
commit
a1490d77ac
33 changed files with 97 additions and 97 deletions
|
@ -24,7 +24,7 @@ public:
|
|||
|
||||
private:
|
||||
void Match(Kernel::HLERequestContext& ctx) {
|
||||
const auto buffer = ctx.ReadBufferSpan();
|
||||
const auto buffer = ctx.ReadBuffer();
|
||||
const auto text = Common::StringFromFixedZeroTerminatedBuffer(
|
||||
reinterpret_cast<const char*>(buffer.data()), buffer.size());
|
||||
|
||||
|
@ -37,7 +37,7 @@ private:
|
|||
}
|
||||
|
||||
void Filter(Kernel::HLERequestContext& ctx) {
|
||||
const auto buffer = ctx.ReadBufferSpan();
|
||||
const auto buffer = ctx.ReadBuffer();
|
||||
const auto text = Common::StringFromFixedZeroTerminatedBuffer(
|
||||
reinterpret_cast<const char*>(buffer.data()), buffer.size());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue