summaryrefslogtreecommitdiffstats
path: root/apps/language.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/language.c')
-rw-r--r--apps/language.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/language.c b/apps/language.c
index 614a4869d5..716ac69020 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -40,15 +40,15 @@ void lang_load(char *filename)
filesize-=2;
while(filesize>3) {
- id = (ptr[0]<<8) | ptr[1];
- ptr+=2;
- language_strings[id] = ptr;
- while(*ptr) {
+ id = (ptr[0]<<8) | ptr[1]; /* get two-byte id */
+ ptr+=2; /* pass the id */
+ language_strings[id] = ptr; /* point to this string */
+ while(*ptr) { /* pass the string */
filesize--;
ptr++;
}
- filesize-=3;
- ptr++; /* pass the terminating newline */
+ filesize-=3; /* the id and the terminating zero */
+ ptr++; /* pass the terminating zero-byte */
}
}
else {