was not using the pointer properly. leaving the value untouched

This commit is contained in:
Dana Jansens 2003-03-31 07:49:40 +00:00
parent 8fbc68d46d
commit 8d19206866

View file

@ -76,7 +76,7 @@ void frame_frame_gravity(Frame *self, int *x, int *y)
break;
case StaticGravity:
case ForgetGravity:
x += self->size.left;
*x += self->size.left;
break;
}