Tidy up SetupWiiMemory

This commit is contained in:
Matthew Parlane
2014-02-07 17:26:50 +13:00
parent 70e2ed320d
commit 6b980cbf30
3 changed files with 47 additions and 58 deletions

View File

@ -10,6 +10,17 @@
#include "../CoreParameter.h"
#include "Volume.h"
using DiscIO::IVolume;
typedef struct CountrySetting
{
const std::string area;
const std::string video;
const std::string game;
const std::string code;
} CountrySetting;
class CBoot
{
public:
@ -45,7 +56,7 @@ private:
static bool Load_BS2(const std::string& _rBootROMFilename);
static void Load_FST(bool _bIsWii);
static bool SetupWiiMemory(unsigned int _CountryCode);
static bool SetupWiiMemory(IVolume::ECountry country);
};
#endif