diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-09-09 16:43:25 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-09-09 16:43:25 +0000 |
| commit | 73f6abebc0bcba03fe2a8f9b3b22bb60a2108e30 (patch) | |
| tree | 223ebdbd20b594fbd23d7faad53b989a7193f26b | |
| parent | 066a54728851a686ef49526a67b732bd07f39f27 (diff) | |
| download | rockbox-73f6abebc0bcba03fe2a8f9b3b22bb60a2108e30.zip rockbox-73f6abebc0bcba03fe2a8f9b3b22bb60a2108e30.tar.gz rockbox-73f6abebc0bcba03fe2a8f9b3b22bb60a2108e30.tar.bz2 rockbox-73f6abebc0bcba03fe2a8f9b3b22bb60a2108e30.tar.xz | |
Fixed sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2246 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/mpeg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index bb64a3a..f5f8227 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -1665,6 +1665,9 @@ int mpeg_val2phys(int setting, int value) void mpeg_sound_channel_config(int configuration) { +#ifdef SIMULATOR + (void)configuration; +#else unsigned long val_on = 0x80000; unsigned long val_off = 0; @@ -1727,6 +1730,7 @@ void mpeg_sound_channel_config(int configuration) #endif break; } +#endif } void mpeg_init(int volume, int bass, int treble, int balance, int loudness, int bass_boost, int avc) |