WGInput: Work around crash with Steam overlay.

This commit is contained in:
Admiral H. Curtiss 2022-09-07 21:06:26 +02:00
parent 48c9c224cf
commit 67c97a0bf2
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 5 additions and 1 deletions

View File

@ -544,8 +544,12 @@ private:
{
try
{
// Workaround for Steam. If Steam's GameOverlayRenderer64.dll is loaded, battery_info is null.
auto battery_info = m_raw_controller.try_as<WGI::IGameControllerBatteryInfo>();
if (!battery_info)
return false;
const winrt::Windows::Devices::Power::BatteryReport report =
m_raw_controller.TryGetBatteryReport();
battery_info.TryGetBatteryReport();
if (!report)
return false;