1
0
Fork 0
forked from len0rd/rockbox

fix yellow

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29479 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2011-03-01 09:01:45 +00:00
parent fec3193f8a
commit 08fa83bd7c

View file

@ -52,7 +52,7 @@ int skin_get_touchaction(struct wps_data *data, int* edge_offset,
short vx, vy;
int type = action_get_touchscreen_press(&x, &y);
static int last_action = ACTION_NONE;
struct touchregion *r, *temp;
struct touchregion *r, *temp = NULL;
bool repeated = (type == BUTTON_REPEAT);
bool released = (type == BUTTON_REL);
bool pressed = (type == BUTTON_TOUCHSCREEN);
@ -119,7 +119,7 @@ int skin_get_touchaction(struct wps_data *data, int* edge_offset,
/* On release, all regions are disarmed. */
if (released)
skin_disarm_touchregions(data);
if (retregion)
if (retregion && temp)
*retregion = temp;
if (returncode != ACTION_NONE)