summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-04-23 19:38:27 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-04-23 19:38:27 +0000
commit4e7ddd504b457128b106d860099abc2b651952d5 (patch)
treee57136cda7d792d8dc762142266f7d67ba909e1d
parent0d4a1f1ad34a4fb9a8a853fe94b41071def7546e (diff)
downloadrockbox-4e7ddd504b457128b106d860099abc2b651952d5.tar.gz
rockbox-4e7ddd504b457128b106d860099abc2b651952d5.zip
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
-rw-r--r--apps/plugins/pacbox/pacbox.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h
index 993848b9aa..1ff51e2872 100644
--- a/apps/plugins/pacbox/pacbox.h
+++ b/apps/plugins/pacbox/pacbox.h
@@ -288,8 +288,11 @@
288/* How many video frames (out of a possible 60) we display each second. 288/* How many video frames (out of a possible 60) we display each second.
289 NOTE: pacbox.c assumes this is an integer divisor of 60 289 NOTE: pacbox.c assumes this is an integer divisor of 60
290 */ 290 */
291#if defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F) 291#if defined(TOSHIBA_GIGABEAT_S)
292/* The Nano and Gigabeat can manage full-speed at 30fps (1 in 2 frames) */ 292/* Gigabeat S can manage the full framerate (1 in 1 frames) */
293#define FPS 60
294#elif defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F)
295/* The Nano and Gigabeat F can manage full-speed at 30fps (1 in 2 frames) */
293#define FPS 30 296#define FPS 30
294#else 297#else
295/* We aim for 20fps on the other targets (1 in 3 frames) */ 298/* We aim for 20fps on the other targets (1 in 3 frames) */