mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-01 00:21:43 +00:00
- Fixed "Messages ON" not being printed.
This commit is contained in:
parent
9bd07e5c83
commit
421b6a0343
1 changed files with 2 additions and 2 deletions
|
@ -480,13 +480,13 @@ CCMD (togglemessages)
|
||||||
{
|
{
|
||||||
if (show_messages)
|
if (show_messages)
|
||||||
{
|
{
|
||||||
Printf("%s\n", GStrings("MSGOFF"));
|
Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGOFF"));
|
||||||
show_messages = false;
|
show_messages = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Printf("%s\n", GStrings("MSGON"));
|
|
||||||
show_messages = true;
|
show_messages = true;
|
||||||
|
Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGON"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue