From a1078d9c3b13aaafd8136ed46de761a346ec093a Mon Sep 17 00:00:00 2001 From: Lucian Poston Date: Mon, 25 May 2020 19:27:03 -0500 Subject: [PATCH] Use Y/N for GUIHelper toggle indicators --- ModMaker/Utility/GUIHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ModMaker/Utility/GUIHelper.cs b/ModMaker/Utility/GUIHelper.cs index f6d2059..6f67cee 100644 --- a/ModMaker/Utility/GUIHelper.cs +++ b/ModMaker/Utility/GUIHelper.cs @@ -8,8 +8,8 @@ namespace ModMaker.Utility { public static class GUIHelper { - public static string FormatOn = "◑".Color(RGBA.lime) + " - {0}"; - public static string FormatOff = "◐".Color(RGBA.red) + " - {0}"; + public static string FormatOn = "Y".Color(RGBA.lime) + " - {0}"; + public static string FormatOff = "N".Color(RGBA.red) + " - {0}"; public static string GetToggleText(bool toggle, string text) {