summaryrefslogtreecommitdiffstats
path: root/uisimulator/common
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-03 18:06:13 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-03 18:06:13 +0000
commit323d75d25f58f6e13c91fe1c42e974cc6fb54c19 (patch)
tree2779a96fdde5a9b10cd06eb2b7c1c4980a858320 /uisimulator/common
parentbbe1eaf89ed2345af0ad5d865dcb1d2f58bf40bd (diff)
downloadrockbox-323d75d25f58f6e13c91fe1c42e974cc6fb54c19.tar.gz
rockbox-323d75d25f58f6e13c91fe1c42e974cc6fb54c19.zip
It's not necessary (anymore?) to map lcd_icon() to sim_lcd_icon() for the simulator. * Removed a stray lcd_icon() call from usb handling.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13006 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common')
-rw-r--r--uisimulator/common/sim_icons.c2
-rw-r--r--uisimulator/common/sim_icons.h27
2 files changed, 0 insertions, 29 deletions
diff --git a/uisimulator/common/sim_icons.c b/uisimulator/common/sim_icons.c
index e60182fa63..f24fce2ca5 100644
--- a/uisimulator/common/sim_icons.c
+++ b/uisimulator/common/sim_icons.c
@@ -19,8 +19,6 @@
#include "config.h"
#ifdef HAVE_LCD_CHARCELLS
-#include "sim_icons.h"
-
#include <lcd.h>
#include <kernel.h>
#include <sprintf.h>
diff --git a/uisimulator/common/sim_icons.h b/uisimulator/common/sim_icons.h
deleted file mode 100644
index 4555b65189..0000000000
--- a/uisimulator/common/sim_icons.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2002 Mats Lidell <matsl@contactor.se>
- *
- * All files in this archive are subject to the GNU General Public License.
- * See the file COPYING in the source tree root for full license agreement.
- *
- * This software is distributed on an "AS IS" basis, WITH OUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#ifndef SIM_ICONS
-#define SIM_ICONS
-
-#include <stdbool.h>
-
-extern void sim_lcd_icon(int icon, bool enable);
-
-#endif /* SIM_ICONS */