summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-24 14:28:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-24 14:28:48 +0000
commit9e9f58f5c62aad25ef1c7d612184852e7d10d445 (patch)
tree4d57d467b3196372ecd380c049777989c9aeb1ea /firmware
parent999f6b5b4aef9d9629f333d6db98f0c3a71f4255 (diff)
downloadrockbox-9e9f58f5c62aad25ef1c7d612184852e7d10d445.tar.gz
rockbox-9e9f58f5c62aad25ef1c7d612184852e7d10d445.zip
use proper remote lcd functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6522 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/logf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/logf.c b/firmware/logf.c
index a7df8a2e89..ac25d65690 100644
--- a/firmware/logf.c
+++ b/firmware/logf.c
@@ -30,7 +30,7 @@
#include <sprintf.h>
#include <stdbool.h>
#include "config.h"
-#include "lcd.h"
+#include "lcd-remote.h"
#include "logf.h"
unsigned char logfbuffer[MAX_LOGF_LINES][16];
@@ -46,7 +46,7 @@ static void displayremote(void)
int i;
int index;
- lcd_getstringsize("A", &w, &h);
+ lcd_remote_getstringsize("A", &w, &h);
lines = LCD_REMOTE_HEIGHT/h;
lcd_remote_setmargins(0, 0);