use in_sint8 macro

This commit is contained in:
jsorg71 2006-11-14 07:03:44 +00:00
parent 699a4edbcd
commit b681420acc
1 changed files with 2 additions and 2 deletions

View File

@ -108,11 +108,11 @@ rdp_orders_in_present(struct stream* s, int* present,
static void APP_CC
rdp_orders_in_coord(struct stream* s, int* coord, int delta)
{
signed char change;
int change;
if (delta)
{
in_uint8(s, change);
in_sint8(s, change);
*coord += change;
}
else