IPC_HLE/es: In-class initialise member variables

This commit is contained in:
Léo Lam 2016-09-25 19:26:53 +02:00
parent bf0ab79439
commit 349b27199b
2 changed files with 4 additions and 4 deletions

View File

@ -61,8 +61,8 @@
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)
: IWII_IPC_HLE_Device(_DeviceID, _rDeviceName), m_TitleID(-1), m_AccessIdentID(0x6000000)
CWII_IPC_HLE_Device_es::CWII_IPC_HLE_Device_es(u32 device_id, const std::string& device_name)
: IWII_IPC_HLE_Device(device_id, device_name)
{
}

View File

@ -132,8 +132,8 @@ private:
CContentAccessMap m_ContentAccessMap;
std::vector<u64> m_TitleIDs;
u64 m_TitleID;
u32 m_AccessIdentID;
u64 m_TitleID = -1;
u32 m_AccessIdentID = 0x6000000;
static u8* keyTable[11];