summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2009-05-14 10:57:35 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2009-05-14 10:57:35 +0000
commit6b9d56bc6beefd53276d3a5d0fb02563500d8d9b (patch)
tree4de6c42b01f1facde254b82edc2f9c9c4a01daa4 /Source
parentc64f73d4f7cbac773bfd2e590d1807361c70157b (diff)
just doing it while i remember :p
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3232 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/DSPSpy/ConsoleHelper.h2
1 files changed, 1 insertions, 1 deletions
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;