mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
Move DiscIO enums to a new file
At first there weren't many enums in Volume.h, but the number has been growing, and I'm planning to add one more for regions. To not make Volume.h too large, and to avoid needing to include Volume.h in code that doesn't use volume objects, I'm moving the enums to a new file. I'm also turning them into enum classes while I'm at it.
This commit is contained in:
@ -7,7 +7,10 @@
|
||||
#include <cstdlib>
|
||||
#include <string>
|
||||
|
||||
#include "DiscIO/Volume.h"
|
||||
namespace DiscIO
|
||||
{
|
||||
enum class Country;
|
||||
}
|
||||
|
||||
struct CountrySetting
|
||||
{
|
||||
@ -54,5 +57,5 @@ private:
|
||||
static bool Load_BS2(const std::string& _rBootROMFilename);
|
||||
static void Load_FST(bool _bIsWii);
|
||||
|
||||
static bool SetupWiiMemory(DiscIO::IVolume::ECountry country);
|
||||
static bool SetupWiiMemory(DiscIO::Country country);
|
||||
};
|
||||
|
Reference in New Issue
Block a user