From 19736218fb7d3d969b2e5168c441ff993ed6a954 Mon Sep 17 00:00:00 2001 From: Nathan Stoddard Date: Mon, 28 Aug 2023 14:22:18 -0700 Subject: [PATCH] Fix all messages being shown in gray on the 'M' screen Fixes #598 --- src/brogue/IO.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/brogue/IO.c b/src/brogue/IO.c index a918805dc..9e87337c 100644 --- a/src/brogue/IO.c +++ b/src/brogue/IO.c @@ -3919,7 +3919,7 @@ void printString(const char *theString, short x, short y, const color *foreColor } } - plotCharToBuffer(theString[i], (windowpos){ x, y }, foreColor, backColor, dbuf); + plotCharToBuffer(theString[i], (windowpos){ x, y }, &fColor, backColor, dbuf); } }