From 74d55eeb1cfb5e0c5dc5bedba33304e60b15d6c4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Bernardy Date: Mon, 7 Feb 2005 23:32:36 +0000 Subject: [PATCH] long policy git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5846 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/win32/button.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uisimulator/win32/button.c b/uisimulator/win32/button.c index 8182f83060..f1828f1009 100644 --- a/uisimulator/win32/button.c +++ b/uisimulator/win32/button.c @@ -216,7 +216,7 @@ void button_event(int key, bool pressed) /* Again copied from real button.c... */ -int button_get(bool block) +long button_get(bool block) { struct event ev; @@ -227,7 +227,7 @@ int button_get(bool block) return BUTTON_NONE; } -int button_get_w_tmo(int ticks) +long button_get_w_tmo(int ticks) { struct event ev; queue_wait_w_tmo(&button_queue, &ev, ticks);