Adds experimental data.bin export of wii saves,

use at your own risk as it has been tested only to the point that a real wii recognizes the save on an sd card
Please post test results here or on issue 1945
removed the automated backup when importing from a save.bin

fixed display of pokemon titles in memcardmanager

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4829 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
LPFaint99
2010-01-14 07:19:10 +00:00
parent 2db709aeb6
commit b186f0821e
20 changed files with 2603 additions and 149 deletions

View File

@ -49,7 +49,6 @@ Core::GetWindowHandle().
#include "ConfigMain.h"
#include "PluginManager.h"
#include "MemcardManager.h"
#include "MemoryCards/WiiSaveCrypted.h"
#include "CheatsWindow.h"
#include "LuaWindow.h"
#include "AboutDolphin.h"
@ -814,8 +813,8 @@ void CFrame::OnImportSave(wxCommandEvent& WXUNUSED (event))
if (!path.IsEmpty())
{
CWiiSaveCrypted saveFile(path.ToUTF8().data());
saveFile.Extract();
CWiiSaveCrypted* saveFile = new CWiiSaveCrypted(path.ToUTF8().data());
delete saveFile;
}
}