mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
fuzeplus: fix lcd-target.h (LCD_FRAMEBUF_ADDR must point to lcd_framebuffer and not FRAME)
Change-Id: Ia1f16f9b8e3041517b60336c06aedd40dfd2be12
This commit is contained in:
parent
cd99b0dbf9
commit
8cadb587e8
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@
|
||||||
#ifndef LCD_TARGET_H
|
#ifndef LCD_TARGET_H
|
||||||
#define LCD_TARGET_H
|
#define LCD_TARGET_H
|
||||||
|
|
||||||
#define LCD_FRAMEBUF_ADDR(col, row) ((fb_data *)FRAME + (row)*LCD_WIDTH + (col))
|
#define LCD_FRAMEBUF_ADDR(col, row) ((fb_data *)lcd_framebuffer + (row)*LCD_WIDTH + (col))
|
||||||
|
|
||||||
/* Not really optimized, but are unusual */
|
/* Not really optimized, but are unusual */
|
||||||
#define LCD_OPTIMIZED_UPDATE
|
#define LCD_OPTIMIZED_UPDATE
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue