Core: Get rid of an unnecessary struct typedef in Boot.h.

This commit is contained in:
Lioncash 2014-07-13 15:28:50 -04:00
parent 16582a0459
commit 9d3c0102fc
1 changed files with 2 additions and 2 deletions

View File

@ -12,13 +12,13 @@
#include "DiscIO/Volume.h"
using DiscIO::IVolume;
typedef struct CountrySetting
struct CountrySetting
{
const std::string area;
const std::string video;
const std::string game;
const std::string code;
} CountrySetting;
};
class CBoot
{