THIS COMMIT MOST LIKELY BREAKS THINGS.
changed conchars from 16-bit to 32-bit added support for RGBI fg and bg colors better support for ^8/^9 text codes fix to echoish menu sounds added plugin stuff for centerprints/server messages/chat messages, not finalized (?) GL/SW color character functions improved (although neither handle transparent characters, and SW needs improvement with the palette remapping) git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1750 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
8ef3ae1182
commit
a8889d8f24
31 changed files with 632 additions and 575 deletions
|
@ -1393,7 +1393,7 @@ static char *TP_ParseFunChars (char *s, qbool chat)
|
|||
}
|
||||
}
|
||||
if (!chat && *s == '^' && s[1] && s[1] != ' ') {
|
||||
*out++ = s[1] | 128;
|
||||
*out++ = s[1] | CON_HIGHCHARSMASK;
|
||||
s += 2;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue