Display menu text darker if mouse cursor is off

This commit is contained in:
Allison Fleischer 2020-01-29 00:04:11 -08:00 committed by Ethan Lee
parent 03a4c3362a
commit 906e35244b
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ void titlerender(Graphics& dwgfx, mapclass& map, Game& game, entityclass& obj, U
dwgfx.Print(-1, 85, "Current mode: SHOW", tr, tg, tb, true);
}
else {
dwgfx.Print(-1, 85, "Current mode: HIDE", tr, tg, tb, true);
dwgfx.Print(-1, 85, "Current mode: HIDE", tr/2, tg/2, tb/2, true);
}
}
}