summaryrefslogtreecommitdiffstats
path: root/uisimulator/common/lcd-playersim.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-19 19:38:45 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit0c4f89370d05056faa789aa9cabcccc4e509fb9f (patch)
tree6ddf7fff0a47564db41d39927ea1acbdb03e74ee /uisimulator/common/lcd-playersim.h
parent092c340a2062fa98b7387fc5fd63578ddae7d0b6 (diff)
downloadrockbox-0c4f89370d.tar.gz
rockbox-0c4f89370d.zip
[2/4] get rid of HAVE_LCD_CHARCELLS
HAVE_LCD_BITMAP is now redundant. lcd_bitmap is always-on in features.txt so manual and lang strings don't have to change Change-Id: I08eeb20de48099ffc2dc23782711af368c2ec794
Diffstat (limited to 'uisimulator/common/lcd-playersim.h')
-rw-r--r--uisimulator/common/lcd-playersim.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/uisimulator/common/lcd-playersim.h b/uisimulator/common/lcd-playersim.h
deleted file mode 100644
index 63e8b80eba..0000000000
--- a/uisimulator/common/lcd-playersim.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2002 by Kjell Ericson
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#define ICON_HEIGHT 12
-#define CHAR_HEIGHT 8
-
-#ifdef CHAR_WIDTH
- #undef CHAR_WIDTH
-#endif
-
-#define CHAR_WIDTH 6
-#define CHAR_PIXEL 2
-#define BORDER_MARGIN 1
-
-extern bool sim_lcd_framebuffer[SIM_LCD_HEIGHT][SIM_LCD_WIDTH];
-
-void lcd_print_icon(int x, int icon_line, bool enable, char **icon);
-void lcd_print_char(int x, int y, unsigned char ch);
-void sim_lcd_update_rect(int x, int y, int width, int height);
-void sim_lcd_define_pattern(int pat, const char *pattern);