From 92fa54c3f90685168ee737ee53f7ccee73d89426 Mon Sep 17 00:00:00 2001 From: aMannus Date: Thu, 13 Apr 2023 15:32:51 +0200 Subject: [PATCH] Replaces text chevron with Font Awesome icon (#2687) --- soh/soh/GameMenuBar.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/soh/soh/GameMenuBar.cpp b/soh/soh/GameMenuBar.cpp index 880c50eb7..557e22379 100644 --- a/soh/soh/GameMenuBar.cpp +++ b/soh/soh/GameMenuBar.cpp @@ -93,7 +93,9 @@ namespace GameMenuBar { std::string GetWindowButtonText(const char* text, bool menuOpen) { char buttonText[100] = ""; - if(menuOpen) { strcat(buttonText,"> "); } + if (menuOpen) { + strcat(buttonText, ICON_FA_CHEVRON_RIGHT " "); + } strcat(buttonText, text); if (!menuOpen) { strcat(buttonText, " "); } return buttonText;