mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix for importing / exporting more than one save per launch
SD_IV should not be global, thanks to interdpth as I was only testing with one save before remove duplicated code from BannerLoaderWii.cpp git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4863 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -36,10 +36,7 @@ CBannerLoaderWii::CBannerLoaderWii(DiscIO::IVolume *pVolume)
|
||||
char Filename[260];
|
||||
u64 TitleID;
|
||||
|
||||
if (DiscIO::IsVolumeWadFile(pVolume))
|
||||
pVolume->GetTitleID((u8*)&TitleID);
|
||||
else
|
||||
pVolume->RAWRead((u64)0x0F8001DC, 8, (u8*)&TitleID);
|
||||
pVolume->GetTitleID((u8*)&TitleID);
|
||||
|
||||
TitleID = Common::swap64(TitleID);
|
||||
|
||||
|
Reference in New Issue
Block a user