Skip to content

Commit

Permalink
ImGuiOverlays: Fix missing space
Browse files Browse the repository at this point in the history
Text gets bunched up otherwise with no space.
  • Loading branch information
JordanTheToaster committed Jul 26, 2023
1 parent f7cd8d0 commit 5cf3969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/ImGui/ImGuiOverlays.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ void ImGuiManager::DrawSettingsOverlay()
if (GSConfig.UserHacks_TextureInsideRt != GSTextureInRtMode::Disabled)
APPEND("TexRT={} ", static_cast<unsigned>(GSConfig.UserHacks_TextureInsideRt));
if (GSConfig.UserHacks_BilinearHack != GSBilinearDirtyMode::Automatic)
APPEND("BLU={}", static_cast<unsigned>(GSConfig.UserHacks_BilinearHack));
APPEND("BLU={} ", static_cast<unsigned>(GSConfig.UserHacks_BilinearHack));
if (GSConfig.UserHacks_WildHack)
APPEND("WA ");
if (GSConfig.UserHacks_NativePaletteDraw)
Expand Down

0 comments on commit 5cf3969

Please sign in to comment.