use in_sint8 macro

This commit is contained in:
jsorg71 2006-11-14 07:03:44 +00:00
parent 699a4edbcd
commit b681420acc

View File

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