mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #612 from lioncash/typedef
Core: Get rid of an unnecessary struct typedef in Boot.h.
This commit is contained in:
commit
5e8ff31eac
1 changed files with 2 additions and 2 deletions
|
@ -12,13 +12,13 @@
|
||||||
#include "DiscIO/Volume.h"
|
#include "DiscIO/Volume.h"
|
||||||
using DiscIO::IVolume;
|
using DiscIO::IVolume;
|
||||||
|
|
||||||
typedef struct CountrySetting
|
struct CountrySetting
|
||||||
{
|
{
|
||||||
const std::string area;
|
const std::string area;
|
||||||
const std::string video;
|
const std::string video;
|
||||||
const std::string game;
|
const std::string game;
|
||||||
const std::string code;
|
const std::string code;
|
||||||
} CountrySetting;
|
};
|
||||||
|
|
||||||
class CBoot
|
class CBoot
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue