changeset 1553:e68d3b16c79e

Oops, reverse the meaning of PageUp and PageDown. :D
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 13 May 2018 04:12:32 +0300
parents fdd3a02d830f
children 7ed25973dbcb
files tools/64vw.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/64vw.c	Sun May 13 04:11:05 2018 +0300
+++ b/tools/64vw.c	Sun May 13 04:12:32 2018 +0300
@@ -321,14 +321,14 @@
                             currIndex = noptFilenames2;
                         break;
 
-                    case SDLK_PAGEUP:
+                    case SDLK_PAGEDOWN:
                         if (currIndex > 10)
                             currIndex -= 10;
                         else
                             currIndex = 0;
                         break;
 
-                    case SDLK_PAGEDOWN:
+                    case SDLK_PAGEUP:
                         if (currIndex < noptFilenames2 - 10)
                             currIndex += 10;
                         else