Skip to content

Commit

Permalink
Connect Controller OSD display
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRhysWyrill committed Jun 8, 2023
1 parent f48e288 commit d64b954
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pcsx2-winrt/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,12 @@ std::optional<WindowInfo> Host::GetTopLevelWindowInfo()

void Host::OnInputDeviceConnected(const std::string_view& identifier, const std::string_view& device_name)
{
Host::AddKeyedOSDMessage(fmt::format("{} connected.", identifier), fmt::format("{} connected.", identifier), 5.0f);
}

void Host::OnInputDeviceDisconnected(const std::string_view& identifier)
{
Host::AddKeyedOSDMessage(fmt::format("{} connected.", identifier), fmt::format("{} disconnected.", identifier), 5.0f);
}

void Host::SetRelativeMouseMode(bool enabled)
Expand Down

0 comments on commit d64b954

Please sign in to comment.