summaryrefslogtreecommitdiff
path: root/www/docs/rocklatin.t
diff options
context:
space:
mode:
Diffstat (limited to 'www/docs/rocklatin.t')
-rw-r--r--www/docs/rocklatin.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/docs/rocklatin.t b/www/docs/rocklatin.t
index b8285ec17d..7aee26fd3e 100644
--- a/www/docs/rocklatin.t
+++ b/www/docs/rocklatin.t
@@ -49,7 +49,7 @@ be switched to a substitute character.
49<h2>Accessing hardware</h2> 49<h2>Accessing hardware</h2>
50The Rockbox software can access a HW-LCD-character by doing a lcd_putc(0x100-0x1ff). That would of course make it 100% hardware depended (=not good). 50The Rockbox software can access a HW-LCD-character by doing a lcd_putc(0x100-0x1ff). That would of course make it 100% hardware depended (=not good).
51<p> 51<p>
52The Rockbox software can also define 23 own patterns, even though hardware only 52The Rockbox software can also define 22 own patterns, even though hardware only
53allows 4 or 8. The software should of course not try to display more than 4 53allows 4 or 8. The software should of course not try to display more than 4
54or 8 of such characters. This code example shows how to define a pattern: 54or 8 of such characters. This code example shows how to define a pattern:
55<pre> 55<pre>
@@ -68,7 +68,7 @@ or 8 of such characters. This code example shows how to define a pattern:
68 lcd_unlock_pattern(handle); 68 lcd_unlock_pattern(handle);
69} 69}
70</pre> 70</pre>
71The handle is very likely to be between 0x01 to 0x17, which in software will 71The handle is very likely to be between 0x01 to 0x16, which in software will
72be handled as a prioritized character (even higher than the icons). 72be handled as a prioritized character (even higher than the icons).
73 73
74<h2>Some notes</h2> 74<h2>Some notes</h2>