summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-03-16 09:05:07 +0000
committerDave Chapman <dave@dchapman.com>2007-03-16 09:05:07 +0000
commita693481c2ff30c67274e7c4988549e22f04d3ae5 (patch)
tree768082a8f216d0e898ca6e3b5bd054ad9d0914f2
parent0c6aea816dc46302148d110312826688d8822290 (diff)
downloadrockbox-a693481c2ff30c67274e7c4988549e22f04d3ae5.tar.gz
rockbox-a693481c2ff30c67274e7c4988549e22f04d3ae5.zip
Render at 30fps on the Gigabeat
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12799 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/pacbox/pacbox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h
index e20acf93ce..c326f9add8 100644
--- a/apps/plugins/pacbox/pacbox.h
+++ b/apps/plugins/pacbox/pacbox.h
@@ -140,8 +140,8 @@
140/* How many video frames (out of a possible 60) we display each second. 140/* How many video frames (out of a possible 60) we display each second.
141 NOTE: pacbox.c assumes this is an integer divisor of 60 141 NOTE: pacbox.c assumes this is an integer divisor of 60
142 */ 142 */
143#ifdef IPOD_NANO 143#if defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F)
144/* The Nano can manage full-speed at 30fps (1 in 2 frames) */ 144/* The Nano and Gigabeat can manage full-speed at 30fps (1 in 2 frames) */
145#define FPS 30 145#define FPS 30
146#else 146#else
147/* We aim for 20fps on the other targets (1 in 3 frames) */ 147/* We aim for 20fps on the other targets (1 in 3 frames) */