From 335a8e5c5ca3312bc05b972eb81680b4afb5cf80 Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 27 Apr 2017 16:37:13 -0700 Subject: [PATCH] Change debugger IO title to light blue for easier reading --- source/Debugger/Debugger_Display.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Debugger/Debugger_Display.cpp b/source/Debugger/Debugger_Display.cpp index 79305d83..568b02ea 100644 --- a/source/Debugger/Debugger_Display.cpp +++ b/source/Debugger/Debugger_Display.cpp @@ -2755,9 +2755,11 @@ void _DrawSoftSwitch( RECT & rect, int nAddress, bool bSet, char *sPrefix, char DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_OPERATOR ) ); PrintTextCursorX( ":", temp ); - DebuggerSetColorFG( DebuggerGetColor( FG_INFO_TITLE )); if( sPrefix ) + { + DebuggerSetColorFG( DebuggerGetColor( FG_INFO_REG )); // light blue PrintTextCursorX( sPrefix, temp ); + } // 2.9.0.3 _DrawSoftSwitchHighlight( temp, bSet, sOn, sOff, bg_default );