Fix indentation in function PSO_MakeSaveGameValid() in GCMemcard.cpp.

Also move the iterator variable for a for loop into the loop statement in function CARD_GetSerialNo()
This commit is contained in:
Lioncash 2013-09-17 21:27:37 -04:00
parent 6cc30f3b23
commit 197b317357
1 changed files with 10 additions and 10 deletions

View File

@ -1324,8 +1324,8 @@ void GCMemcard::FormatInternal(GCMC_Header &GCP)
void GCMemcard::CARD_GetSerialNo(u32 *serial1,u32 *serial2)
{
u32 serial[8];
int i;
for (i = 0; i < 8; i++)
for (int i = 0; i < 8; i++)
{
memcpy(&serial[i], (u8 *) &hdr+(i*4), 4);
}