summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--watch-library/watch/watch_slcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/watch-library/watch/watch_slcd.c b/watch-library/watch/watch_slcd.c
index 4bcb1652..1b1e53e4 100644
--- a/watch-library/watch/watch_slcd.c
+++ b/watch-library/watch/watch_slcd.c
@@ -236,7 +236,7 @@ void watch_display_string(char *string, uint8_t position) {
while(string[i] != 0) {
watch_display_character(string[i], position + i);
i++;
- if (i >= Num_Chars) break;
+ if (position + i >= Num_Chars) break;
}
// uncomment this line to see screen output on terminal, i.e.
// FR 29