summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 08:35:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 08:35:29 +0000
commitbc45e628a152c1c8f55827666b140e784087b3aa (patch)
tree7b6eda9c8137181a6a6efecb620e9c056dde5d7c /apps
parent824cf0c649b45e22e3da2db542babed82f34f6af (diff)
downloadrockbox-bc45e628a152c1c8f55827666b140e784087b3aa.tar.gz
rockbox-bc45e628a152c1c8f55827666b140e784087b3aa.zip
these only build/run on targets using the LCD_SSD1815 display
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5773 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/gray_blockfuncs.c2
-rw-r--r--apps/plugins/lib/gray_drawgraymap.c2
-rw-r--r--apps/plugins/lib/gray_pixelfuncs.c2
-rw-r--r--apps/plugins/lib/gray_scroll_down.c2
-rw-r--r--apps/plugins/lib/gray_scroll_left.c2
-rw-r--r--apps/plugins/lib/gray_scroll_right.c2
-rw-r--r--apps/plugins/lib/gray_scroll_up.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/lib/gray_blockfuncs.c b/apps/plugins/lib/gray_blockfuncs.c
index 5f4f90506f..c534e4cfd6 100644
--- a/apps/plugins/lib/gray_blockfuncs.c
+++ b/apps/plugins/lib/gray_blockfuncs.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/* Prototypes */ 32/* Prototypes */
diff --git a/apps/plugins/lib/gray_drawgraymap.c b/apps/plugins/lib/gray_drawgraymap.c
index c8ee93fef1..00d4d2b270 100644
--- a/apps/plugins/lib/gray_drawgraymap.c
+++ b/apps/plugins/lib/gray_drawgraymap.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/* Prototypes */ 32/* Prototypes */
diff --git a/apps/plugins/lib/gray_pixelfuncs.c b/apps/plugins/lib/gray_pixelfuncs.c
index 3cdcccd9a5..31ce8deb3c 100644
--- a/apps/plugins/lib/gray_pixelfuncs.c
+++ b/apps/plugins/lib/gray_pixelfuncs.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/* Prototypes */ 32/* Prototypes */
diff --git a/apps/plugins/lib/gray_scroll_down.c b/apps/plugins/lib/gray_scroll_down.c
index 3766ce1f73..1fb1de8335 100644
--- a/apps/plugins/lib/gray_scroll_down.c
+++ b/apps/plugins/lib/gray_scroll_down.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/*--------------------------------------------------------------------------- 32/*---------------------------------------------------------------------------
diff --git a/apps/plugins/lib/gray_scroll_left.c b/apps/plugins/lib/gray_scroll_left.c
index 22bcc03629..5fb9a441c1 100644
--- a/apps/plugins/lib/gray_scroll_left.c
+++ b/apps/plugins/lib/gray_scroll_left.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/*--------------------------------------------------------------------------- 32/*---------------------------------------------------------------------------
diff --git a/apps/plugins/lib/gray_scroll_right.c b/apps/plugins/lib/gray_scroll_right.c
index 2b0b85aab7..f944319d91 100644
--- a/apps/plugins/lib/gray_scroll_right.c
+++ b/apps/plugins/lib/gray_scroll_right.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/*--------------------------------------------------------------------------- 32/*---------------------------------------------------------------------------
diff --git a/apps/plugins/lib/gray_scroll_up.c b/apps/plugins/lib/gray_scroll_up.c
index 4a4657bfae..4c493071af 100644
--- a/apps/plugins/lib/gray_scroll_up.c
+++ b/apps/plugins/lib/gray_scroll_up.c
@@ -26,7 +26,7 @@
26#ifndef SIMULATOR /* not for simulator by now */ 26#ifndef SIMULATOR /* not for simulator by now */
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#if CONFIG_LCD == LCD_SSD1815 /* only for Recorder/Ondio */
30#include "gray.h" 30#include "gray.h"
31 31
32/*--------------------------------------------------------------------------- 32/*---------------------------------------------------------------------------