summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-10-03 10:17:06 +0100
committerAidan MacDonald <amachronic@protonmail.com>2022-10-03 13:29:52 +0100
commitb371ff1f4758f6781e2b89f86bd8e65b8585f56e (patch)
treef7b7fc573d4868a88d7d57b464089146f9496cde
parentd25d24812e8120c0eb133a412287ac030eb185c9 (diff)
downloadrockbox-b371ff1f4758f6781e2b89f86bd8e65b8585f56e.tar.gz
rockbox-b371ff1f4758f6781e2b89f86bd8e65b8585f56e.zip
mrobe500: Fix missing parentheses in #define
Change-Id: Ifbba50a951fb3212eabe430dfef6868a7ad5e391
-rw-r--r--firmware/export/config/mrobe500.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config/mrobe500.h b/firmware/export/config/mrobe500.h
index ebda42d160..621c0b75ca 100644
--- a/firmware/export/config/mrobe500.h
+++ b/firmware/export/config/mrobe500.h
@@ -220,7 +220,7 @@
220#define HAVE_USB_HID_MOUSE 220#define HAVE_USB_HID_MOUSE
221 221
222/* Define this if hardware supports alternate blitting */ 222/* Define this if hardware supports alternate blitting */
223#define HAVE_LCD_MODES LCD_MODE_RGB565 | LCD_MODE_YUV | LCD_MODE_PAL256 223#define HAVE_LCD_MODES (LCD_MODE_RGB565 | LCD_MODE_YUV | LCD_MODE_PAL256)
224 224
225#define CONFIG_CPU DM320 225#define CONFIG_CPU DM320
226 226