summaryrefslogtreecommitdiff
path: root/firmware/logf.c
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/logf.c
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/logf.c')
-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 @@
30#include <sprintf.h> 30#include <sprintf.h>
31#include <stdbool.h> 31#include <stdbool.h>
32#include "config.h" 32#include "config.h"
33#include "lcd.h" 33#include "lcd-remote.h"
34#include "logf.h" 34#include "logf.h"
35 35
36unsigned char logfbuffer[MAX_LOGF_LINES][16]; 36unsigned char logfbuffer[MAX_LOGF_LINES][16];
@@ -46,7 +46,7 @@ static void displayremote(void)
46 int i; 46 int i;
47 int index; 47 int index;
48 48
49 lcd_getstringsize("A", &w, &h); 49 lcd_remote_getstringsize("A", &w, &h);
50 lines = LCD_REMOTE_HEIGHT/h; 50 lines = LCD_REMOTE_HEIGHT/h;
51 51
52 lcd_remote_setmargins(0, 0); 52 lcd_remote_setmargins(0, 0);