From 6d05e27d68ff6a65580e771bccb20e6139ef5d68 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sun, 9 Jan 2011 03:01:55 +0000 Subject: [PATCH] Gigabeat F can easily manage 60fps in pacbox. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29011 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/pacbox/pacbox.h | 8 ++++---- 1 file 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 @@ /* How many video frames (out of a possible 60) we display each second. NOTE: pacbox.c assumes this is an integer divisor of 60 */ -#if defined(TOSHIBA_GIGABEAT_S) -/* Gigabeat S can manage the full framerate (1 in 1 frames) */ +#if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F) +/* Gigabeat S,F 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) */ +#elif defined(IPOD_NANO) +/* The Nano can manage full-speed at 30fps (1 in 2 frames) */ #define FPS 30 #else /* We aim for 20fps on the other targets (1 in 3 frames) */