summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/uisdl.h
diff options
context:
space:
mode:
authorMark Arigo <markarigo@gmail.com>2009-05-25 21:10:45 +0000
committerMark Arigo <markarigo@gmail.com>2009-05-25 21:10:45 +0000
commit758bb3bc628705ff8e5c677b3b2d87720c726c13 (patch)
treed78cbf984e4bc613b0b76fcf4a5f090ab1d774b8 /uisimulator/sdl/uisdl.h
parentd2ea7db6f55cbb121870ecd41d4d80581354b799 (diff)
downloadrockbox-758bb3bc628705ff8e5c677b3b2d87720c726c13.tar.gz
rockbox-758bb3bc628705ff8e5c677b3b2d87720c726c13.zip
3 new ports: Samsung YH-820, YH-920, and YH-925. Mostly functional. Audio working on 820 & 925 (untested on the 920). No battery readings. No recording. No plugins. Keymap needs work.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21083 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/sdl/uisdl.h')
-rw-r--r--uisimulator/sdl/uisdl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h
index b4936fa77b..dae1d20393 100644
--- a/uisimulator/sdl/uisdl.h
+++ b/uisimulator/sdl/uisdl.h
@@ -302,6 +302,24 @@
302#define UI_LCD_POSX 45 /* x position of lcd */ 302#define UI_LCD_POSX 45 /* x position of lcd */
303#define UI_LCD_POSY 90 /* y position of lcd */ 303#define UI_LCD_POSY 90 /* y position of lcd */
304 304
305#elif defined(SAMSUNG_YH820)
306#define UI_TITLE "Samsung YH-820"
307#define UI_WIDTH 368 /* width of GUI window */
308#define UI_HEIGHT 428 /* height of GUI window */
309#define UI_LCD_POSX 120 /* x position of lcd */
310#define UI_LCD_POSY 75 /* y position of lcd */
311
312#elif defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
313#ifdef SAMSUNG_YH920
314#define UI_TITLE "Samsung YH-920"
315#else
316#define UI_TITLE "Samsung YH-925"
317#endif
318#define UI_WIDTH 408 /* width of GUI window */
319#define UI_HEIGHT 454 /* height of GUI window */
320#define UI_LCD_POSX 124 /* x position of lcd */
321#define UI_LCD_POSY 42 /* y position of lcd */
322
305#else 323#else
306#error no UI defines 324#error no UI defines
307#endif 325#endif