bad merge fix 2

This commit is contained in:
Robert Neumann 2016-10-09 16:21:48 +02:00
parent 95fe77a594
commit 3bc847a9f0
1 changed files with 4 additions and 4 deletions

View File

@ -30,8 +30,8 @@ struct _mcd
u32 transferAddr; // Transfer address
u8 FLAG; // for PSX;
u8 port; // port
u8 port; // port
u8 slot; // and slot for this memcard
// Auto Eject
@ -55,13 +55,13 @@ struct _mcd
}
// Read from memorycard to dest
void Read(u8 *dest, int size)
void Read(u8 *dest, int size)
{
SysPlugins.McdRead(port, slot, dest, transferAddr, size);
}
// Write to memorycard from src
void Write(u8 *src, int size)
void Write(u8 *src, int size)
{
SysPlugins.McdSave(port, slot, src,transferAddr, size);
}