1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-02 18:50:08 +00:00

Merge pull request from wwylele/ipc-sign

ipc_helpers: silent signed comparison warning
This commit is contained in:
Pengfei Zhu 2019-07-15 12:03:31 +08:00 committed by GitHub
commit fb8adcc08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,7 +19,7 @@ class RequestHelperBase {
protected:
Kernel::HLERequestContext* context;
u32* cmdbuf;
ptrdiff_t index = 1;
std::size_t index = 1;
Header header;
public: