mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 23:06:34 +00:00
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:
parent
6cc30f3b23
commit
197b317357
1 changed files with 10 additions and 10 deletions
|
@ -1324,8 +1324,8 @@ void GCMemcard::FormatInternal(GCMC_Header &GCP)
|
||||||
void GCMemcard::CARD_GetSerialNo(u32 *serial1,u32 *serial2)
|
void GCMemcard::CARD_GetSerialNo(u32 *serial1,u32 *serial2)
|
||||||
{
|
{
|
||||||
u32 serial[8];
|
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);
|
memcpy(&serial[i], (u8 *) &hdr+(i*4), 4);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue