Skip to content

Commit

Permalink
Fix all messages being shown in gray on the 'M' screen (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
nstoddard authored Aug 31, 2023
1 parent b67697f commit 5b7a72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brogue/IO.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 5b7a72e

Please sign in to comment.