mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
ipc_helpers: silent signed comparison warning
index is only used as positive index in arrays. The warning is in DEBUG_ASSERT_MSG(index == TotalSize() ...)
This commit is contained in:
parent
e689847b11
commit
fd3cfd0ae0
@ -19,7 +19,7 @@ class RequestHelperBase {
|
|||||||
protected:
|
protected:
|
||||||
Kernel::HLERequestContext* context;
|
Kernel::HLERequestContext* context;
|
||||||
u32* cmdbuf;
|
u32* cmdbuf;
|
||||||
ptrdiff_t index = 1;
|
std::size_t index = 1;
|
||||||
Header header;
|
Header header;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user