1
0
Fork 0
forked from len0rd/rockbox

Made global variable ff_mode local by making it static (should be accessed by status_get_ffmode() anyway).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17179 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-20 00:04:08 +00:00
parent 984278b10a
commit 06860eff86
2 changed files with 1 additions and 3 deletions

View file

@ -50,7 +50,7 @@
#include "pcm_record.h"
#endif
enum playmode ff_mode;
static enum playmode ff_mode;
void status_init(void)
{

View file

@ -19,8 +19,6 @@
#ifndef _STATUS_H
#define _STATUS_H
extern enum playmode ff_mode;
#if defined(HAVE_LCD_CHARCELLS)
extern bool record;
extern bool audio;