WEBOS: Removed unused gestureDownTime

This commit is contained in:
Klaus Reimer 2011-05-08 20:47:12 +02:00
parent cc0d8b6252
commit 9e4edcdc1f

View File

@ -39,9 +39,6 @@
// Inidicates if gesture area is pressed down or not.
static bool gestureDown = false;
// The timestamp when gesture area was pressed down.
static int gestureDownTime = 0;
// The timestamp when screen was pressed down.
static int screenDownTime = 0;
@ -113,7 +110,6 @@ bool WebOSSdlEventSource::handleKeyDown(SDL_Event &ev, Common::Event &event) {
// Handle gesture area tap.
if (ev.key.keysym.sym == SDLK_WORLD_71) {
gestureDown = true;
gestureDownTime = getMillis();
return true;
}