mousetext flag was blocking inverse flag.

This commit is contained in:
Kelvin Sherlock 2021-03-27 23:53:52 -04:00
parent 5a971ac08c
commit b1340d2a56
1 changed files with 2 additions and 2 deletions

View File

@ -343,9 +343,9 @@
{
// mouse text actually requires mouse text and inverse to be on.
if (flag & Screen::FlagMouseText)
if ((flag & Screen::FlagMouseText) && c >= '@' && c <= '_')
{
if (c >= '@' && c <= '_') c |= 0x80;
c |= 0x80;
}
else
{