diff options
author | Tomas Salfischberger <tomas@rockbox.org> | 2005-05-02 16:06:05 +0000 |
---|---|---|
committer | Tomas Salfischberger <tomas@rockbox.org> | 2005-05-02 16:06:05 +0000 |
commit | 23028f579b011601b2c9e7d37868d4e1b577d910 (patch) | |
tree | cba7df08a348baa576e7c09900bc97252a989205 /apps/plugins/dict.c | |
parent | e2f5dba61c77d83b42676b0572f89d876007a019 (diff) |
Adapted Miika's tool to rockbox coding style *oops*
(And removed some tabs from my own last minute edits in dict.c)
Changed the place of endian conversion form the device to the convertor.
Should speed it up a little.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6397 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/dict.c')
-rw-r--r-- | apps/plugins/dict.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/apps/plugins/dict.c b/apps/plugins/dict.c index efaeab2ed3..d3fea1d52d 100644 --- a/apps/plugins/dict.c +++ b/apps/plugins/dict.c @@ -52,7 +52,7 @@ void init_screen(void) } /* for endian problems */ -#ifdef LITTLE_ENDIAN +#ifdef ROCKBOX_BIG_ENDIAN #define readlong(x) x #else long readlong(void* value) @@ -140,7 +140,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { DEBUGF("Not found.\n"); rb->splash(HZ*2, true, "Not found."); - rb->close(fIndex); + rb->close(fIndex); return PLUGIN_OK; } @@ -152,7 +152,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { DEBUGF("Err: Failed to open description file.\n"); rb->splash(HZ*2, true, "Failed to open descriptions."); - rb->close(fIndex); + rb->close(fIndex); return PLUGIN_ERROR; } @@ -187,14 +187,15 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { /* copy one lcd line */ rb->strncpy(output, ptr, display_columns); - output[display_columns] = '\0'; + output[display_columns] = '\0'; - /* unsigned to kill a warning... */ - if((int)rb->strlen(ptr) < display_columns) { - rb->lcd_puts(0, lines, output); + /* typecast to kill a warning... */ + if((int)rb->strlen(ptr) < display_columns) + { + rb->lcd_puts(0, lines, output); lines++; - break; - } + break; + } /* get the last spacechar */ @@ -210,7 +211,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) next = display_columns; } - /* put the line on screen */ + /* put the line on screen */ rb->lcd_puts(0, lines, output); /* get output count */ @@ -240,6 +241,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) } rb->close(fIndex); - rb->close(fData); + rb->close(fData); return PLUGIN_OK; } |