summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2003-11-25 23:33:05 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2003-11-25 23:33:05 +0000
commit7dfe57b92e60e8976b15a5439c5ed71e2eb22607 (patch)
tree71c4298f555684cfb3d27b159e00a027e1826a80
parent53989844b4ea998fb83173692d00e73f21dd66a3 (diff)
downloadrockbox-7dfe57b92e60e8976b15a5439c5ed71e2eb22607.tar.gz
rockbox-7dfe57b92e60e8976b15a5439c5ed71e2eb22607.zip
not yet for V2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4067 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/rockbox_flash.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c
index a9cb91bd2f..ce7976fd4d 100644
--- a/apps/plugins/rockbox_flash.c
+++ b/apps/plugins/rockbox_flash.c
@@ -21,8 +21,8 @@
21****************************************************************************/ 21****************************************************************************/
22#include "plugin.h" 22#include "plugin.h"
23 23
24/* Only build for target */ 24#ifndef SIMULATOR /* Only build for target */
25#ifndef SIMULATOR 25#ifndef ARCHOS_RECORDERV2 /* not for those yet */
26 26
27/* define DUMMY if you only want to "play" with the UI, does no harm */ 27/* define DUMMY if you only want to "play" with the UI, does no harm */
28/* #define DUMMY */ 28/* #define DUMMY */
@@ -872,4 +872,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
872 return PLUGIN_OK; 872 return PLUGIN_OK;
873} 873}
874 874
875
876#endif /* #ifndef ARCHOS_RECORDERV2 */
875#endif /* #ifndef SIMULATOR */ 877#endif /* #ifndef SIMULATOR */