rnd-20060802-4-src
authorHolger Schemel <info@artsoft.org>
Wed, 2 Aug 2006 19:45:35 +0000 (21:45 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:52:34 +0000 (10:52 +0200)
ChangeLog
src/conftime.h
src/screens.c

index 27efedea865f52627ccb64596190164a8aac6c2e..2145075dd273e06e3d39334733d42fa652339480 100644 (file)
--- 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
index c5375e169f9960fc833dca4a49aa82a6a6b43412..c05088a09d744f3504d15e14d1f47ed833552409 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "[2006-08-02 21:27]"
+#define COMPILE_DATE_STRING "[2006-08-02 21:42]"
index fbe8007298591b372fb1386f81bace9f1e10e645..dde113085d96c36857972b05313d04dc27c1cfba 100644 (file)
@@ -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);