Fix for dev-cpp's internal compiler error...

Well, not just for dev-cpp, it really should have given a warning instead though.


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1911 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-01-29 03:38:43 +00:00
parent 92fa37f03e
commit 0a738562ec

View file

@ -77,7 +77,7 @@ void M_PrintColoured (int cx, int cy, int colour, qbyte *str)
{
while (*str)
{
M_DrawColouredCharacter (cx, cy, (*str) + (colour<<CON_FGMASK));
M_DrawColouredCharacter (cx, cy, (*str) + (colour<<CON_FGSHIFT));
str++;
cx += 8;
}