summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sdl')
-rw-r--r--firmware/target/hosted/sdl/lcd-sdl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/lcd-sdl.c b/firmware/target/hosted/sdl/lcd-sdl.c
index 1b28d8b6db..57026eedfe 100644
--- a/firmware/target/hosted/sdl/lcd-sdl.c
+++ b/firmware/target/hosted/sdl/lcd-sdl.c
@@ -141,7 +141,15 @@ void sdl_set_gradient(SDL_Surface *surface, SDL_Color *start, SDL_Color *end,
141 141
142int lcd_get_dpi(void) 142int lcd_get_dpi(void)
143{ 143{
144#if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
145 return 267;
146#elif (CONFIG_PLATFORM & PLATFORM_MAEMO4)
147 return 225;
148#elif (CONFIG_PLATFORM & PLATFORM_PANDORA)
149 return 217;
150#else
144 /* TODO: find a way to query it from the OS, SDL doesn't support it 151 /* TODO: find a way to query it from the OS, SDL doesn't support it
145 * directly; for now assume the more or less standard 96 */ 152 * directly; for now assume the more or less standard 96 */
146 return 96; 153 return 96;
154#endif
147} 155}