summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorMoshe Piekarski <dev.rockbox@melachim.net>2020-10-06 13:34:04 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2020-10-26 12:28:48 -0400
commit12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a (patch)
treecb9850c2c4ea68b7acc816828c4d53dd7c8391f9 /apps/plugin.c
parent5d5f8169b53fc989b456b0f0d7940bcf9415cbeb (diff)
downloadrockbox-12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a.tar.gz
rockbox-12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a.zip
make the plugin API frambuffer agnostic
Change-Id: I5abdc231093054c517ff53b9a456997e440e3f6e
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index bdb2d64239..48f9dac487 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 Bjรถrn Stenberg 10 * Copyright (C) 2002 Bjrn Stenberg
11 * 11 *
12 * This program is free software; you can redistribute it and/or 12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License 13 * modify it under the terms of the GNU General Public License
@@ -194,7 +194,7 @@ static const struct plugin_api rockbox_api = {
194 lcd_putsf, 194 lcd_putsf,
195 lcd_puts_scroll, 195 lcd_puts_scroll,
196 lcd_scroll_stop, 196 lcd_scroll_stop,
197 &lcd_static_framebuffer[0][0], 197 &lcd_framebuffer,
198 lcd_set_viewport, 198 lcd_set_viewport,
199 lcd_set_framebuffer, 199 lcd_set_framebuffer,
200 lcd_bmp_part, 200 lcd_bmp_part,
@@ -281,7 +281,7 @@ static const struct plugin_api rockbox_api = {
281 lcd_remote_mono_bitmap_part, 281 lcd_remote_mono_bitmap_part,
282 lcd_remote_mono_bitmap, 282 lcd_remote_mono_bitmap,
283 lcd_remote_putsxy, 283 lcd_remote_putsxy,
284 &lcd_remote_static_framebuffer[0][0], 284 &lcd_remote_framebuffer;
285 lcd_remote_update, 285 lcd_remote_update,
286 lcd_remote_update_rect, 286 lcd_remote_update_rect,
287#if (LCD_REMOTE_DEPTH > 1) 287#if (LCD_REMOTE_DEPTH > 1)