dspspy: highlighted values were black...on black. now "bright cyan"

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3418 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-06-13 05:04:55 +00:00
parent ff7f9020fe
commit 402d9068e1
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ void print_reg_block(int x, int y, int sel, const u16 *regs, const u16 *compare_
for (int k = 0; k < 4; k++)
{
if (sel == reg && k == small_cursor_x && ui_mode == UIM_EDIT_REG)
CON_SetColor(CON_BLACK, color1);
CON_SetColor(CON_BRIGHT_CYAN, color1);
else
CON_SetColor(color1, CON_BLACK);
CON_Printf(x + 3 + j * 8 + k, i + y, "%01x", (regs[reg] >> ((3 - k) * 4)) & 0xf);