Controller: Fix invalid SettingInfos causing crash in FullscreenUI

This commit is contained in:
Albert Liu
2021-02-24 17:23:07 -08:00
parent defea38a60
commit 3ca3a78b58
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ Controller::SettingList PlayStationMouse::StaticGetSettings()
{
static constexpr std::array<SettingInfo, 1> settings = {{
{SettingInfo::Type::Boolean, "RelativeMouseMode", TRANSLATABLE("PlayStationMouse", "Relative Mouse Mode"),
TRANSLATABLE("PlayStationMouse", "Locks the mouse cursor to the window, use for FPS games.")},
TRANSLATABLE("PlayStationMouse", "Locks the mouse cursor to the window, use for FPS games."), "false"},
}};
return SettingList(settings.begin(), settings.end());