mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
InputCommon: Provide WindowSystemInfo getter for ControllerInterface.
This commit is contained in:
@ -423,6 +423,11 @@ ciface::InputChannel ControllerInterface::GetCurrentInputChannel()
|
|||||||
return tls_input_channel;
|
return tls_input_channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WindowSystemInfo ControllerInterface::GetWindowSystemInfo() const
|
||||||
|
{
|
||||||
|
return m_wsi;
|
||||||
|
}
|
||||||
|
|
||||||
void ControllerInterface::SetAspectRatioAdjustment(float value)
|
void ControllerInterface::SetAspectRatioAdjustment(float value)
|
||||||
{
|
{
|
||||||
m_aspect_ratio_adjustment = value;
|
m_aspect_ratio_adjustment = value;
|
||||||
|
@ -122,6 +122,8 @@ public:
|
|||||||
static void SetCurrentInputChannel(ciface::InputChannel);
|
static void SetCurrentInputChannel(ciface::InputChannel);
|
||||||
static ciface::InputChannel GetCurrentInputChannel();
|
static ciface::InputChannel GetCurrentInputChannel();
|
||||||
|
|
||||||
|
WindowSystemInfo GetWindowSystemInfo() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void ClearDevices();
|
void ClearDevices();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user