mirror of
https://github.com/libretro/ppsspp.git
synced 2025-03-09 03:31:16 +00:00
Shut up an incorrect warning.
It can never be undefined, but that's fine, the compiler can't tell.
This commit is contained in:
parent
6bd5257791
commit
67e2c1fb98
@ -398,7 +398,7 @@ int sceKernelSendMbx(SceUID id, u32 packetAddr)
|
||||
m->AddInitialMessage(packetAddr);
|
||||
else
|
||||
{
|
||||
u32 next = m->nmb.packetListHead, prev;
|
||||
u32 next = m->nmb.packetListHead, prev = 0;
|
||||
for (int i = 0, n = m->nmb.numMessages; i < n; i++)
|
||||
{
|
||||
if (next == packetAddr)
|
||||
|
Loading…
x
Reference in New Issue
Block a user