From 6b9d56bc6beefd53276d3a5d0fb02563500d8d9b Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Thu, 14 May 2009 10:57:35 +0000 Subject: [PATCH] just doing it while i remember :p git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3232 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/DSPSpy/ConsoleHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DSPSpy/ConsoleHelper.h b/Source/DSPSpy/ConsoleHelper.h index 70ebe63075..2f2be18c91 100644 --- a/Source/DSPSpy/ConsoleHelper.h +++ b/Source/DSPSpy/ConsoleHelper.h @@ -38,7 +38,7 @@ void CON_Printf(int x, int y, const char* fmt, ...) void CON_SetColor(u8 foreground, u8 background) { - u8 bright = foreground & 8 ? 1 : 0; + u8 bright = foreground & CON_BRIGHT ? 1 : 0; if (bright) foreground &= ~CON_BRIGHT;