1
0
Fork 0
forked from eden-emu/eden

hle_ipc: Rename ReadBufferSpan to ReadBuffer

This commit is contained in:
ameerj 2022-12-25 14:31:53 -05:00
parent 59c0f85407
commit a1490d77ac
33 changed files with 97 additions and 97 deletions

View file

@ -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());