Gigabeat S: Will run pacbox at 60fps. Set FPS accordingly.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25702 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2010-04-23 19:38:27 +00:00
parent 0d4a1f1ad3
commit 4e7ddd504b

View file

@ -288,8 +288,11 @@
/* How many video frames (out of a possible 60) we display each second. /* How many video frames (out of a possible 60) we display each second.
NOTE: pacbox.c assumes this is an integer divisor of 60 NOTE: pacbox.c assumes this is an integer divisor of 60
*/ */
#if defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F) #if defined(TOSHIBA_GIGABEAT_S)
/* The Nano and Gigabeat can manage full-speed at 30fps (1 in 2 frames) */ /* Gigabeat S can manage the full framerate (1 in 1 frames) */
#define FPS 60
#elif defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F)
/* The Nano and Gigabeat F can manage full-speed at 30fps (1 in 2 frames) */
#define FPS 30 #define FPS 30
#else #else
/* We aim for 20fps on the other targets (1 in 3 frames) */ /* We aim for 20fps on the other targets (1 in 3 frames) */