summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Louis Biasini <jlbiasini@gmail.com>2012-03-16 17:03:12 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2012-11-21 11:26:39 +0100
commit3a39f77ed60df55abf1cf069a903d4665fb17cbc (patch)
treeec463a44efe2404c07a0a0e6e79751bed33a3e76
parent8296d493f217413b85f7b4370fc42f0c42e292b6 (diff)
downloadrockbox-3a39f77ed60df55abf1cf069a903d4665fb17cbc.tar.gz
rockbox-3a39f77ed60df55abf1cf069a903d4665fb17cbc.zip
Pacbox: add fuze+ to the targets that can manage full frames
Like gigabeat s and f, Fuze+ also handles dysplaying all frames even with sound on. Change-Id: Ib92062e378869c1687d6a7658ec23be60e168ccf Reviewed-on: http://gerrit.rockbox.org/186 Reviewed-by: Amaury Pouly <amaury.pouly@gmail.com>
-rw-r--r--apps/plugins/pacbox/pacbox.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h
index ac07848e79..56cba67d13 100644
--- a/apps/plugins/pacbox/pacbox.h
+++ b/apps/plugins/pacbox/pacbox.h
@@ -360,8 +360,10 @@
360/* How many video frames (out of a possible 60) we display each second. 360/* How many video frames (out of a possible 60) we display each second.
361 NOTE: pacbox.c assumes this is an integer divisor of 60 361 NOTE: pacbox.c assumes this is an integer divisor of 60
362 */ 362 */
363#if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F) 363#if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F) || \
364/* Gigabeat S,F can manage the full framerate (1 in 1 frames) */ 364 defined(SANSA_FUZEPLUS)
365/* Gigabeat S,F and Sansa Fuze+ can manage the full framerate
366 (1 in 1 frames) */
365#define FPS 60 367#define FPS 60
366#elif defined(IPOD_NANO) 368#elif defined(IPOD_NANO)
367/* The Nano can manage full-speed at 30fps (1 in 2 frames) */ 369/* The Nano can manage full-speed at 30fps (1 in 2 frames) */