ImGuiOverlays: Fix missing space

Text gets bunched up otherwise with no space.
This commit is contained in:
JordanTheToaster 2023-07-26 14:29:30 +01:00 committed by refractionpcsx2
parent a8f6336b47
commit 0b3d4615b8
1 changed files with 1 additions and 1 deletions

View File

@ -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)