From 56a59e2e51d0cbe93ce16253e52a6421b0168c06 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 28 Apr 2004 17:21:57 +0000 Subject: Introduce diagonal movement keys on the numeric keypad, and use them as an alternative control method in Cube. (This was a bit of hassle in the Windows front end; I also introduced a debugging framework and made TranslateMessage conditional.) [originally from svn r4162] --- puzzles.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'puzzles.h') diff --git a/puzzles.h b/puzzles.h index 86c2cc1..81a9a7a 100644 --- a/puzzles.h +++ b/puzzles.h @@ -21,7 +21,11 @@ enum { CURSOR_UP, CURSOR_DOWN, CURSOR_LEFT, - CURSOR_RIGHT + CURSOR_RIGHT, + CURSOR_UP_LEFT, + CURSOR_DOWN_LEFT, + CURSOR_UP_RIGHT, + CURSOR_DOWN_RIGHT }; #define IGNOREARG(x) ( (x) = (x) ) -- cgit v1.1