diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-28 18:28:29 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-28 18:28:29 +0000 |
| commit | 16ec2063a1f2b05f6ae4f11cac37067e72f0c535 (patch) | |
| tree | e0820b03279b731611e21ea3639bbb91d896ee44 | |
| parent | d0abfe86e00f3cec41970231ad90710914c73025 (diff) | |
| download | rockbox-16ec2063a1f2b05f6ae4f11cac37067e72f0c535.zip rockbox-16ec2063a1f2b05f6ae4f11cac37067e72f0c535.tar.gz rockbox-16ec2063a1f2b05f6ae4f11cac37067e72f0c535.tar.bz2 rockbox-16ec2063a1f2b05f6ae4f11cac37067e72f0c535.tar.xz | |
Killed a simulator warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1485 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/mpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 6eaa6d5..d2d9459 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -157,6 +157,8 @@ static unsigned int last_track_counter = 0; #ifndef SIMULATOR +static unsigned long mas_version_code; + static int tag_read_idx = 0; static int tag_write_idx = 0; @@ -1239,8 +1241,6 @@ int mpeg_val2phys(int setting, int value) return result; } -static unsigned long mas_version_code; - void mpeg_init(int volume, int bass, int treble, int loudness, int bass_boost, int avc) { #ifdef SIMULATOR |