diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-08-29 21:15:27 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-08-29 21:15:27 +0000 |
commit | d6c054575b4561b4c657565ecb4ff82565fa6c78 (patch) | |
tree | c05a7f619a2580a8ae3ee29e863f076d1065c398 /uisimulator | |
parent | 99a0598c284471342fcda1fdcba90d4b666bfbb3 (diff) |
Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7416 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/common/stubs.c | 4 | ||||
-rw-r--r-- | uisimulator/x11/SOURCES | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 2357f9baea..0bbecdae41 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -71,7 +71,7 @@ long pcm_get_bytes_waiting(void) return 0; } -#if CONFIG_HWCODEC != MASNONE +#if CONFIG_CODEC != SWCODEC void audio_set_buffer_margin(int seconds) { (void)seconds; @@ -273,7 +273,7 @@ void button_set_flip(bool yesno) (void)yesno; } -#if CONFIG_HWCODEC != MASNONE +#if CONFIG_CODEC != SWCODEC void talk_init(void) { } diff --git a/uisimulator/x11/SOURCES b/uisimulator/x11/SOURCES index edff103196..0aabfb2c03 100644 --- a/uisimulator/x11/SOURCES +++ b/uisimulator/x11/SOURCES @@ -9,6 +9,6 @@ screenhack.c thread.c uibasic.c visual.c -#if CONFIG_HWCODEC == MASNONE +#if CONFIG_CODEC == SWCODEC sound.c #endif |