From fd2d44a349e77defdfaded7bb337f35755252eac Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 27 Apr 2017 16:41:03 -0700 Subject: [PATCH] Change debugger background for LC to be darker cyan --- source/Debugger/Debugger_Display.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/Debugger/Debugger_Display.cpp b/source/Debugger/Debugger_Display.cpp index 568b02ea..521a10c9 100644 --- a/source/Debugger/Debugger_Display.cpp +++ b/source/Debugger/Debugger_Display.cpp @@ -2747,7 +2747,7 @@ void _DrawSoftSwitch( RECT & rect, int nAddress, bool bSet, char *sPrefix, char RECT temp = rect; char sText[ 4 ] = ""; - DebuggerSetColorBG( DebuggerGetColor( BG_INFO )); + DebuggerSetColorBG( DebuggerGetColor( bg_default )); // DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_ADDRESS )); DebuggerSetColorFG( DebuggerGetColor( FG_DISASM_TARGET )); sprintf( sText, "%02X", (nAddress & 0xFF) ); @@ -2836,12 +2836,10 @@ void _DrawSoftSwitchLanguageCardBank( RECT & rect, int iBank, int extraBank = 0 if (extraBank & (MEM_TYPE_RAMWORKS << 8)) sText[0] = 'r'; // RAMWORKS if (extraBank & (MEM_TYPE_SATURN << 8)) sText[0] = 's'; // SATURN 64K 128K - DebuggerSetColorBG( DebuggerGetColor( BG_INFO )); DebuggerSetColorFG( DebuggerGetColor( FG_INFO_OPCODE )); // FG_INFO_TITLE PrintTextCursorX( sText, rect ); sprintf( sText, "%02X", (extraBank & 0x7F) ); - DebuggerSetColorBG( DebuggerGetColor( BG_INFO )); DebuggerSetColorFG( DebuggerGetColor( FG_INFO_ADDRESS )); PrintTextCursorX( sText, rect );