From e3b8673a20d55f18df200184138df5ff8f678a31 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 2 Aug 2006 21:45:35 +0200 Subject: [PATCH] rnd-20060802-4-src --- ChangeLog | 4 +++- src/conftime.h | 2 +- src/screens.c | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 27efedea..2145075d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,7 +11,9 @@ setup menu (input devices section) by using standard button gadgets * added support for mouse scroll wheel (caused buggy behaviour before) * added support for scrolling horizontal scrollbars with mouse wheel by - holding "Ctrl" button pressed while scrolling the wheel + holding "Ctrl" key pressed while scrolling the wheel + * added support for single step mouse wheel scrolling by holding "Alt" + key pressed while scrolling the wheel * changed output file "stderr.txt" on Windows platform now always to be created in the R'n'D sub-directory of the personal documents directory * added Windows message box to direct to "stderr.txt" after error aborts diff --git a/src/conftime.h b/src/conftime.h index c5375e16..c05088a0 100644 --- a/src/conftime.h +++ b/src/conftime.h @@ -1 +1 @@ -#define COMPILE_DATE_STRING "[2006-08-02 21:27]" +#define COMPILE_DATE_STRING "[2006-08-02 21:42]" diff --git a/src/screens.c b/src/screens.c index fbe80072..dde11308 100644 --- a/src/screens.c +++ b/src/screens.c @@ -2576,7 +2576,7 @@ static void execSetupGraphics() get_aspect_ratio_from_screen_mode(&video.fullscreen_modes[i], &xx, &yy); ti->node_top = &screen_modes; - ti->sort_priority = x * y; + ti->sort_priority = x * 10000 + y; sprintf(identifier, "%dx%d", x, y); sprintf(name, "%d x %d [%d:%d]", x, y, xx, yy); -- 2.34.1