mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
fix 2 more warnings
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1209 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -229,7 +229,7 @@ u32 GCMemcard::ImportFile(DEntry& direntry, u8* contents, int remove)
|
|||||||
}
|
}
|
||||||
bat_backup.Map[i++] = 0xFFFF;
|
bat_backup.Map[i++] = 0xFFFF;
|
||||||
//Set bat.map to 0 for each block that was removed
|
//Set bat.map to 0 for each block that was removed
|
||||||
for (int j = 0; j < remove; j++)
|
for (int k = 0; k < remove; k++)
|
||||||
{
|
{
|
||||||
bat_backup.Map[i++] = 0x0000;
|
bat_backup.Map[i++] = 0x0000;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ namespace VertexLoaderManager
|
|||||||
void RunVertices(int vtx_attr_group, int primitive, int count);
|
void RunVertices(int vtx_attr_group, int primitive, int count);
|
||||||
|
|
||||||
// TODO - don't expose these like this.
|
// TODO - don't expose these like this.
|
||||||
static u8* s_pCurBufferPointer;
|
// static u8* s_pCurBufferPointer;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Might move this into its own file later.
|
// Might move this into its own file later.
|
||||||
|
Reference in New Issue
Block a user