mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-16 05:25:41 -04:00
CommonHostInterface: Fix crash when there's no controller interface
This commit is contained in:
parent
cdab84e210
commit
8665a24eee
@ -1058,6 +1058,8 @@ void CommonHostInterface::UpdateControllerInputMap(SettingsInterface& si)
|
||||
AddRumbleToInputMap(binding, controller_index, num_motors);
|
||||
}
|
||||
|
||||
if (m_controller_interface)
|
||||
{
|
||||
const float axis_scale = si.GetFloatValue(category, "AxisScale", 1.00f);
|
||||
m_controller_interface->SetControllerAxisScale(controller_index,
|
||||
(ctype == ControllerType::AnalogController) ? axis_scale : 1.00f);
|
||||
@ -1065,6 +1067,7 @@ void CommonHostInterface::UpdateControllerInputMap(SettingsInterface& si)
|
||||
const float deadzone_size = si.GetFloatValue(category, "Deadzone", 0.25f);
|
||||
m_controller_interface->SetControllerDeadzone(controller_index, deadzone_size);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CommonHostInterface::UpdateHotkeyInputMap(SettingsInterface& si)
|
||||
@ -2000,8 +2003,7 @@ bool CommonHostInterface::SaveScreenshot(const char* filename /* = nullptr */, b
|
||||
}
|
||||
|
||||
m_system->GetGPU()->ResetGraphicsAPIState();
|
||||
const bool screenshot_saved =
|
||||
m_display->WriteDisplayTextureToFile(filename, full_resolution, apply_aspect_ratio);
|
||||
const bool screenshot_saved = m_display->WriteDisplayTextureToFile(filename, full_resolution, apply_aspect_ratio);
|
||||
m_system->GetGPU()->RestoreGraphicsAPIState();
|
||||
if (!screenshot_saved)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user