diff options
| author | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:32:23 +0000 |
|---|---|---|
| committer | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:32:23 +0000 |
| commit | 08cbf69e0e7ec8cce930323bdd3b57eceab542dd (patch) | |
| tree | 69ed2796ce2fc5afab7d9213a8bcd8edb7706441 | |
| parent | f1794535249f9490518c631f5d683a7c0adce21c (diff) | |
| download | rockbox-08cbf69e0e7ec8cce930323bdd3b57eceab542dd.zip rockbox-08cbf69e0e7ec8cce930323bdd3b57eceab542dd.tar.gz rockbox-08cbf69e0e7ec8cce930323bdd3b57eceab542dd.tar.bz2 rockbox-08cbf69e0e7ec8cce930323bdd3b57eceab542dd.tar.xz | |
Removed warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2739 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/common/stubs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index af715c6..89e3cea 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -180,10 +180,18 @@ void mpeg_set_pitch(int pitch) void lcd_clearrect (int x, int y, int nx, int ny) { /* Reprint char if you want to change anything */ + (void)x; + (void)y; + (void)nx; + (void)ny; } void lcd_fillrect (int x, int y, int nx, int ny) { /* Reprint char if you want to change display anything */ + (void)x; + (void)y; + (void)nx; + (void)ny; } #endif |