InputSource: Fix Wcast-function-type-mismatch
This commit is contained in:
parent
5913de947f
commit
9b2cf0abbd
|
@ -69,10 +69,10 @@ bool DInputSource::Initialize(const SettingsInterface& si, std::unique_lock<std:
|
|||
return false;
|
||||
}
|
||||
|
||||
PFNDIRECTINPUT8CREATE create =
|
||||
reinterpret_cast<PFNDIRECTINPUT8CREATE>(GetProcAddress(m_dinput_module, "DirectInput8Create"));
|
||||
PFNDIRECTINPUT8CREATE create = reinterpret_cast<PFNDIRECTINPUT8CREATE>(
|
||||
reinterpret_cast<void*>(GetProcAddress(m_dinput_module, "DirectInput8Create")));
|
||||
PFNGETDFDIJOYSTICK get_joystick_data_format =
|
||||
reinterpret_cast<PFNGETDFDIJOYSTICK>(GetProcAddress(m_dinput_module, "GetdfDIJoystick"));
|
||||
reinterpret_cast<PFNGETDFDIJOYSTICK>(reinterpret_cast<void*>(GetProcAddress(m_dinput_module, "GetdfDIJoystick")));
|
||||
if (!create || !get_joystick_data_format)
|
||||
{
|
||||
ERROR_LOG("Failed to get DInput function pointers.");
|
||||
|
|
|
@ -126,17 +126,17 @@ bool XInputSource::Initialize(const SettingsInterface& si, std::unique_lock<std:
|
|||
}
|
||||
|
||||
// Try the hidden version of XInputGetState(), which lets us query the guide button.
|
||||
m_xinput_get_state =
|
||||
reinterpret_cast<decltype(m_xinput_get_state)>(GetProcAddress(m_xinput_module, reinterpret_cast<LPCSTR>(100)));
|
||||
m_xinput_get_state = reinterpret_cast<decltype(m_xinput_get_state)>(
|
||||
reinterpret_cast<void*>(GetProcAddress(m_xinput_module, reinterpret_cast<LPCSTR>(100))));
|
||||
if (!m_xinput_get_state)
|
||||
{
|
||||
m_xinput_get_state =
|
||||
reinterpret_cast<decltype(m_xinput_get_state)>(GetProcAddress(m_xinput_module, "XInputGetState"));
|
||||
m_xinput_get_state = reinterpret_cast<decltype(m_xinput_get_state)>(
|
||||
reinterpret_cast<void*>(GetProcAddress(m_xinput_module, "XInputGetState")));
|
||||
}
|
||||
m_xinput_set_state =
|
||||
reinterpret_cast<decltype(m_xinput_set_state)>(GetProcAddress(m_xinput_module, "XInputSetState"));
|
||||
m_xinput_get_capabilities =
|
||||
reinterpret_cast<decltype(m_xinput_get_capabilities)>(GetProcAddress(m_xinput_module, "XInputGetCapabilities"));
|
||||
m_xinput_set_state = reinterpret_cast<decltype(m_xinput_set_state)>(
|
||||
reinterpret_cast<void*>(GetProcAddress(m_xinput_module, "XInputSetState")));
|
||||
m_xinput_get_capabilities = reinterpret_cast<decltype(m_xinput_get_capabilities)>(
|
||||
reinterpret_cast<void*>(GetProcAddress(m_xinput_module, "XInputGetCapabilities")));
|
||||
|
||||
if (!m_xinput_get_state || !m_xinput_set_state || !m_xinput_get_capabilities)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue