From f40918e0c9b0c42f4f2463e0a4e9b412e9a4e272 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Tue, 20 Jul 2004 11:30:03 +0000 Subject: [project @ 2004-07-20 11:30:03 by bursa] Key presses are now an int. svn path=/import/netsurf/; revision=1126 --- riscos/window.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/riscos/window.c b/riscos/window.c index 76a5e267c..684192ab6 100644 --- a/riscos/window.c +++ b/riscos/window.c @@ -1190,8 +1190,7 @@ bool ro_gui_window_keypress(struct gui_window *g, int key, bool toolbar) else if (c == 398) c = 31; /* Down */ else if (c == 399) c = 30; /* Up */ if (c < 256) - if (browser_window_key_press(g->bw, - (char) c)) + if (browser_window_key_press(g->bw, c)) return true; } -- cgit v1.2.3