···299299/* How many video frames (out of a possible 60) we display each second.
300300 NOTE: pacbox.c assumes this is an integer divisor of 60
301301 */
302302-#if defined(TOSHIBA_GIGABEAT_S)
303303-/* Gigabeat S can manage the full framerate (1 in 1 frames) */
302302+#if defined(TOSHIBA_GIGABEAT_S) || defined (TOSHIBA_GIGABEAT_F)
303303+/* Gigabeat S,F can manage the full framerate (1 in 1 frames) */
304304#define FPS 60
305305-#elif defined(IPOD_NANO) || defined (TOSHIBA_GIGABEAT_F)
306306-/* The Nano and Gigabeat F can manage full-speed at 30fps (1 in 2 frames) */
305305+#elif defined(IPOD_NANO)
306306+/* The Nano can manage full-speed at 30fps (1 in 2 frames) */
307307#define FPS 30
308308#else
309309/* We aim for 20fps on the other targets (1 in 3 frames) */