diff options
author | Moshe Piekarski <dev.rockbox@melachim.net> | 2020-10-06 13:34:04 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2020-10-26 12:28:48 -0400 |
commit | 12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a (patch) | |
tree | cb9850c2c4ea68b7acc816828c4d53dd7c8391f9 /apps/plugins/doom/i_video.c | |
parent | 5d5f8169b53fc989b456b0f0d7940bcf9415cbeb (diff) | |
download | rockbox-12f3ed1699.tar.gz rockbox-12f3ed1699.tar.bz2 rockbox-12f3ed1699.zip |
make the plugin API frambuffer agnostic
Change-Id: I5abdc231093054c517ff53b9a456997e440e3f6e
Diffstat (limited to 'apps/plugins/doom/i_video.c')
-rw-r--r-- | apps/plugins/doom/i_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/doom/i_video.c b/apps/plugins/doom/i_video.c index 1fb913fbed..3186fac16d 100644 --- a/apps/plugins/doom/i_video.c +++ b/apps/plugins/doom/i_video.c @@ -1059,7 +1059,7 @@ void I_FinishUpdate (void) for (y = 1; y <= SCREENHEIGHT; y++) { - fb_data *dst = rb->lcd_framebuffer + LCD_WIDTH - y; + fb_data *dst = *rb->lcd_framebuffer + LCD_WIDTH - y; count = SCREENWIDTH; do @@ -1073,7 +1073,7 @@ void I_FinishUpdate (void) else #endif { - fb_data *dst = rb->lcd_framebuffer; + fb_data *dst = *rb->lcd_framebuffer; count = SCREENWIDTH*SCREENHEIGHT; do |