Fix Graphics::map_option() not uppercasing selected text

Forgot to do this earlier, whoops.
This commit is contained in:
Misa
2020-06-22 18:29:52 -07:00
committed by Ethan Lee
parent 8c4b48fbfd
commit 8ed9ee1ca2

View File

@@ -334,7 +334,9 @@ void Graphics::map_option(int opt, int num_opts, const std::string& text, bool s
if (selected)
{
Print(x - 16, y, "[ " + text + " ]", 196, 196, 255 - help.glow);
std::string text_upper(text);
std::transform(text_upper.begin(), text_upper.end(), text_upper.begin(), ::toupper);
Print(x - 16, y, "[ " + text_upper + " ]", 196, 196, 255 - help.glow);
}
else
{