diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-02-18 23:29:11 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-02-18 23:29:11 +0000 |
| commit | 8bc2801e7cb78be60967fefa96a71d4e91761630 (patch) | |
| tree | 1d9ee050f9e00bfc328939b1f56aaf070fa3c3ec | |
| parent | 1e391fbdbc4af5fbee0a88d2c6199fabfef4f534 (diff) | |
| download | rockbox-8bc2801e7cb78be60967fefa96a71d4e91761630.zip rockbox-8bc2801e7cb78be60967fefa96a71d4e91761630.tar.gz rockbox-8bc2801e7cb78be60967fefa96a71d4e91761630.tar.bz2 rockbox-8bc2801e7cb78be60967fefa96a71d4e91761630.tar.xz | |
Fix red caused by incorrect includes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29329 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/radio/radioart.c | 2 | ||||
| -rw-r--r-- | firmware/target/hosted/sdl/button-sdl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/radio/radioart.c b/apps/radio/radioart.c index 85397c1..23fb7a3 100644 --- a/apps/radio/radioart.c +++ b/apps/radio/radioart.c @@ -23,13 +23,13 @@ #include <stdio.h> #include <stdbool.h> #include <stdlib.h> +#include "system.h" #include "settings.h" #include "radio.h" #include "buffering.h" #include "file.h" #include "kernel.h" #include "string-extra.h" -#include "misc.h" #include "filefuncs.h" #define MAX_RADIOART_IMAGES 10 diff --git a/firmware/target/hosted/sdl/button-sdl.c b/firmware/target/hosted/sdl/button-sdl.c index 9c8188a..4fab9e8 100644 --- a/firmware/target/hosted/sdl/button-sdl.c +++ b/firmware/target/hosted/sdl/button-sdl.c @@ -28,7 +28,7 @@ #include "button.h" #include "kernel.h" #include "backlight.h" -#include "misc.h" +#include "system.h" #include "button-sdl.h" #include "backlight.h" #include "sim_tasks.h" |