Remove unused identifier from NotifyTouch

The 'state' parameter in GUIAction::NotifyTouch() is used in the
function.

Change-Id: I0744c7aa1542d771dbd2916638fbdd53e9681f86
This commit is contained in:
Matt Mower
2016-06-24 12:30:18 -05:00
committed by Dees Troy
parent 76b8afc4be
commit 25036b75ff
+1 -1
View File
@@ -284,7 +284,7 @@ GUIAction::GUIAction(xml_node<>* node)
}
}
int GUIAction::NotifyTouch(TOUCH_STATE state __unused, int x __unused, int y __unused)
int GUIAction::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused)
{
if (state == TOUCH_RELEASE)
doActions();