comparison tools/64vw.c @ 2073:1ad8382e3670

Make space-key go to next image in addition to arrow right/up.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 05 Dec 2018 17:43:08 +0200
parents 6677535b8b9f
children dcca36701cdd
comparison
equal deleted inserted replaced
2072:6677535b8b9f 2073:1ad8382e3670
372 currIndex--; 372 currIndex--;
373 else 373 else
374 currIndex = 0; 374 currIndex = 0;
375 break; 375 break;
376 376
377 case SDLK_SPACE:
377 case SDLK_UP: 378 case SDLK_UP:
378 case SDLK_RIGHT: 379 case SDLK_RIGHT:
379 if (currIndex < noptFilenames2 - 1) 380 if (currIndex < noptFilenames2 - 1)
380 currIndex++; 381 currIndex++;
381 else 382 else