diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2024-03-11 01:31:05 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2024-03-11 01:31:05 -0500 |
| commit | 9941c54911e8ab713aad1f156511bf6552ca4b3b (patch) | |
| tree | 57fd4cb8658ecf5ba2fa200f9bac8b96ade29ebb /Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp | |
| parent | b89a88afbc5fb93c737e7d74eda25e19b26e7c8f (diff) | |
InputCommon: Provide WindowSystemInfo getter for ControllerInterface.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index b7a9c7f307..24653acdd1 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -423,6 +423,11 @@ ciface::InputChannel ControllerInterface::GetCurrentInputChannel() return tls_input_channel; } +WindowSystemInfo ControllerInterface::GetWindowSystemInfo() const +{ + return m_wsi; +} + void ControllerInterface::SetAspectRatioAdjustment(float value) { m_aspect_ratio_adjustment = value; |
