Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some warnings. Changes suggested by nerzhultheking.
  • Loading branch information
jordan-woyak committed Jan 6, 2013
1 parent 4d6056f commit 7a95713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp
Expand Up @@ -253,15 +253,15 @@ void DoState(PointerWrap &p)
u32 i;
for (i=0; i<IPC_MAX_FDS; i++)
{
u32 exists;
u32 exists = 0;
p.Do(exists);
if (exists)
{
u32 isHw;
u32 isHw = 0;
p.Do(isHw);
if (isHw)
{
u32 hwId;
u32 hwId = 0;
p.Do(hwId);
g_FdMap[i] = AccessDeviceByID(hwId);
}
Expand Down

0 comments on commit 7a95713

Please sign in to comment.