diff --git a/pcsx2/ImGui/ImGuiOverlays.cpp b/pcsx2/ImGui/ImGuiOverlays.cpp index 73e6d5c605..585221fc09 100644 --- a/pcsx2/ImGui/ImGuiOverlays.cpp +++ b/pcsx2/ImGui/ImGuiOverlays.cpp @@ -559,10 +559,10 @@ __ri void ImGuiManager::DrawSettingsOverlay(float scale, float margin, float spa } while (0) if (Patch::GetAllActivePatchesCount() > 0 && EmuConfig.GS.OsdshowPatches) - APPEND("DB={} P={} C={} | ", - Patch::GetActiveGameDBPatchesCount(), - Patch::GetActivePatchesCount(), - Patch::GetActiveCheatsCount()); + APPEND("DB={} P={} C={} | ", + Patch::GetActiveGameDBPatchesCount(), + Patch::GetActivePatchesCount(), + Patch::GetActiveCheatsCount()); if (EmuConfig.Speedhacks.EECycleRate != 0) APPEND("CR={} ", EmuConfig.Speedhacks.EECycleRate); @@ -1085,7 +1085,8 @@ void SaveStateSelectorUI::Open(float open_time /* = DEFAULT_OPEN_TIME */) RefreshHotkeyLegend(); } -bool SaveStateSelectorUI::IsOpen(){ +bool SaveStateSelectorUI::IsOpen() +{ return s_open; } diff --git a/pcsx2/Pcsx2Config.cpp b/pcsx2/Pcsx2Config.cpp index 378178cd93..68f0c73ed3 100644 --- a/pcsx2/Pcsx2Config.cpp +++ b/pcsx2/Pcsx2Config.cpp @@ -673,7 +673,7 @@ const char* Pcsx2Config::GSOptions::DEFAULT_CAPTURE_CONTAINER = "mp4"; const char* Pcsx2Config::AchievementsOptions::OverlayPositionNames[(size_t)AchievementOverlayPosition::MaxCount + 1] = { "TopLeft", - "TopCenter", + "TopCenter", "TopRight", "CenterLeft", "Center", @@ -1906,7 +1906,7 @@ void Pcsx2Config::AchievementsOptions::LoadSave(SettingsWrapper& wrap) bool Pcsx2Config::AchievementsOptions::operator==(const AchievementsOptions& right) const { - return OpEqu(bitset) && OpEqu(NotificationsDuration) && OpEqu(LeaderboardsDuration) && + return OpEqu(bitset) && OpEqu(NotificationsDuration) && OpEqu(LeaderboardsDuration) && OpEqu(OverlayPosition) && OpEqu(NotificationPosition); }