Fix compiler errors for non-gcc compilers.

ugfx_release_2.6
inmarket 2015-11-04 15:05:47 +10:00
parent 1ed7559ef0
commit 583b314db2
1 changed files with 4 additions and 2 deletions

View File

@ -56,8 +56,10 @@ static GTIMER_DECL(MouseTimer);
#include <string.h> // Required for memcpy
static GFXINLINE void CalibrationTransform(GMouseReading *pt, const GMouseCalibration *c) {
coord_t x = (coord_t) (c->ax * pt->x + c->bx * pt->y + c->cx);
coord_t y = (coord_t) (c->ay * pt->x + c->by * pt->y + c->cy);
coord_t x, y;
x = (coord_t) (c->ax * pt->x + c->bx * pt->y + c->cx);
y = (coord_t) (c->ay * pt->x + c->by * pt->y + c->cy);
pt->x = x;
pt->y = y;