Use LastInputColor config value instead of hardcoded color

This commit is contained in:
adelikat 2020-06-30 16:40:00 -05:00
parent e5bbec1800
commit ef311576ee
1 changed files with 2 additions and 2 deletions

View File

@ -281,9 +281,9 @@ namespace BizHawk.Client.EmuHawk
g.DrawString(input, MessageFont, c, point.X, point.Y);
}
else // TODO: message config -- allow setting of "previous", "mixed", and "auto"
else // TODO: message config -- allow setting of "mixed", and "auto"
{
var previousColor = Color.Orange;
var previousColor = Color.FromArgb(GlobalWin.Config.LastInputColor);
Color immediateColor = Color.FromArgb(GlobalWin.Config.MessagesColor);
var autoColor = Color.Pink;
var changedColor = Color.PeachPuff;