summaryrefslogtreecommitdiff
path: root/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2012-02-28 11:51:09 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2012-02-28 11:51:09 +1100
commitc0a2c3fe3a2f5036f2ed65077cbfd774b46b34d0 (patch)
tree808430fcc6e8bb519683c64f61c97e2880902d8d /firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
parentb37e6bc8c119289aca8740dd5e3b60d72f9d6b40 (diff)
downloadrockbox-c0a2c3fe3a2f5036f2ed65077cbfd774b46b34d0.tar.gz
rockbox-c0a2c3fe3a2f5036f2ed65077cbfd774b46b34d0.zip
Fix build errors and warnings
Change-Id: Ie80bc4328d4f89a5a7b77c93f2b445d0e30fb019
Diffstat (limited to 'firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c b/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
index edcdde7253..94f4249f9f 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-remote-mr100.c
@@ -255,7 +255,7 @@ static void remote_update_lcd(void)
255 data[6] = (y + 1) << 3; /* y2 */ 255 data[6] = (y + 1) << 3; /* y2 */
256 256
257 for (x = 0; x < RC_WIDTH; x++) 257 for (x = 0; x < RC_WIDTH; x++)
258 data[x + 7] = FBREMOTEADDR(x,y); 258 data[x + 7] = *FBREMOTEADDR(x,y);
259 259
260 remote_tx(data, RC_WIDTH + 7); 260 remote_tx(data, RC_WIDTH + 7);
261 261