mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
IPC_HLE/es: In-class initialise member variables
This commit is contained in:
@ -61,8 +61,8 @@
|
|||||||
|
|
||||||
std::string CWII_IPC_HLE_Device_es::m_ContentFile;
|
std::string CWII_IPC_HLE_Device_es::m_ContentFile;
|
||||||
|
|
||||||
CWII_IPC_HLE_Device_es::CWII_IPC_HLE_Device_es(u32 _DeviceID, const std::string& _rDeviceName)
|
CWII_IPC_HLE_Device_es::CWII_IPC_HLE_Device_es(u32 device_id, const std::string& device_name)
|
||||||
: IWII_IPC_HLE_Device(_DeviceID, _rDeviceName), m_TitleID(-1), m_AccessIdentID(0x6000000)
|
: IWII_IPC_HLE_Device(device_id, device_name)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,8 +132,8 @@ private:
|
|||||||
CContentAccessMap m_ContentAccessMap;
|
CContentAccessMap m_ContentAccessMap;
|
||||||
|
|
||||||
std::vector<u64> m_TitleIDs;
|
std::vector<u64> m_TitleIDs;
|
||||||
u64 m_TitleID;
|
u64 m_TitleID = -1;
|
||||||
u32 m_AccessIdentID;
|
u32 m_AccessIdentID = 0x6000000;
|
||||||
|
|
||||||
static u8* keyTable[11];
|
static u8* keyTable[11];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user