mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +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)
|
||||
{
|
||||
Printf("%s\n", GStrings("MSGOFF"));
|
||||
Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGOFF"));
|
||||
show_messages = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
Printf("%s\n", GStrings("MSGON"));
|
||||
show_messages = true;
|
||||
Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGON"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue