minor adjustments
authornotaz <notasas@gmail.com>
Mon, 26 May 2008 21:30:07 +0000 (21:30 +0000)
committernotaz <notasas@gmail.com>
Mon, 26 May 2008 21:30:07 +0000 (21:30 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@466 be3aeb3a-fb24-0410-a615-afba39da0efa

Pico/PicoFrameHints.c
platform/gp2x/menu.c

index 0d414b2..76ba0ff 100644 (file)
@@ -116,9 +116,7 @@ static int PicoFrameHints(void)
       }
       else
       {
-#if CAN_HANDLE_240_LINES
-        if (((!(pv->reg[1]&8) && y < 224) || (pv->reg[1]&8)) )
-#else
+#if !CAN_HANDLE_240_LINES
         if (y < 224)
 #endif
           PicoLine(y);
index 0a4cb73..4b3201e 100644 (file)
@@ -46,16 +46,16 @@ static int inp_prevjoy = 0;
 static unsigned long wait_for_input(unsigned long interesting)\r
 {\r
        unsigned long ret;\r
-       static int repeats = 0, wait = 50*1000;\r
+       static int repeats = 0, wait = 6;\r
        int release = 0, i;\r
 \r
-       if (repeats == 2 || repeats == 4) wait /= 2;\r
-       if (repeats == 6) wait = 15 * 1000;\r
+       if      (repeats == 2) wait = 3;\r
+       else if (repeats == 4) wait = 2;\r
+       else if (repeats == 6) wait = 1;\r
 \r
-       for (i = 0; i < 6 && inp_prev == gp2x_joystick_read(1); i++) {\r
+       for (i = 0; i < wait && inp_prev == gp2x_joystick_read(1); i++) {\r
                if (i == 0) repeats++;\r
-               if (wait >= 30*1000) usleep(wait); // usleep sleeps for ~30ms minimum\r
-               else spend_cycles(wait * currentConfig.CPUclock);\r
+               usleep(30000);\r
        }\r
 \r
        while ( !((ret = gp2x_joystick_read(1)) & interesting) ) {\r
@@ -65,7 +65,7 @@ static unsigned long wait_for_input(unsigned long interesting)
 \r
        if (release || ret != inp_prev) {\r
                repeats = 0;\r
-               wait = 50*1000;\r
+               wait = 6;\r
        }\r
        inp_prev = ret;\r
        inp_prevjoy = 0;\r