mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-10 06:02:10 +08:00
engine: fix some signed char cases
This commit is contained in:
@@ -386,7 +386,7 @@ qboolean MSG_WriteString( sizebuf_t *sb, const char *pStr )
|
||||
{
|
||||
do
|
||||
{
|
||||
MSG_WriteChar( sb, *pStr );
|
||||
MSG_WriteChar( sb, (signed char)*pStr );
|
||||
pStr++;
|
||||
} while( *( pStr - 1 ));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user