diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2011-01-09 03:01:55 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2011-01-09 03:01:55 +0000 |
commit | 6d05e27d68ff6a65580e771bccb20e6139ef5d68 (patch) | |
tree | 0abc8225ae934832cce3068375f5e3d105486126 | |
parent | dd6990d698c240fa0ca98ce0e9f719960ffcf480 (diff) | |
download | rockbox-6d05e27d68ff6a65580e771bccb20e6139ef5d68.tar.gz rockbox-6d05e27d68ff6a65580e771bccb20e6139ef5d68.zip |
Gigabeat F can easily manage 60fps in pacbox.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29011 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/pacbox/pacbox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h index a15aef7a10..d32b3d48be 100644 --- a/apps/plugins/pacbox/pacbox.h +++ b/apps/plugins/pacbox/pacbox.h | |||
@@ -299,11 +299,11 @@ | |||
299 | /* How many video frames (out of a possible 60) we display each second. | 299 | /* How many video frames (out of a possible 60) we display each second. |
300 | NOTE: pacbox.c assumes this is an integer divisor of 60 | 300 | NOTE: pacbox.c assumes this is an integer divisor of 60 |
301 | */ | 301 | */ |
302 | #if defined(TOSHIBA_GIGABEAT_S) | 302 | #if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F) |
303 | /* Gigabeat S can manage the full framerate (1 in 1 frames) */ | 303 | /* Gigabeat S,F can manage the full framerate (1 in 1 frames) */ |
304 | #define FPS 60 | 304 | #define FPS 60 |
305 | #elif defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F) | 305 | #elif defined(IPOD_NANO) |
306 | /* The Nano and Gigabeat F can manage full-speed at 30fps (1 in 2 frames) */ | 306 | /* The Nano can manage full-speed at 30fps (1 in 2 frames) */ |
307 | #define FPS 30 | 307 | #define FPS 30 |
308 | #else | 308 | #else |
309 | /* We aim for 20fps on the other targets (1 in 3 frames) */ | 309 | /* We aim for 20fps on the other targets (1 in 3 frames) */ |