diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-01-21 12:06:02 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-01-21 12:06:02 +0000 |
| commit | ccf8e4e8bae0e1371f68cdce3e420f05bfd19853 (patch) | |
| tree | 35239a0d40ea9c67b79db16eb3b5c8c475ddaf46 /apps/plugins/imageviewer/imageviewer.h | |
| parent | 3e89296d6a3ecbcd430d3569fdc28a355ac36a0d (diff) | |
| download | rockbox-ccf8e4e8bae0e1371f68cdce3e420f05bfd19853.zip rockbox-ccf8e4e8bae0e1371f68cdce3e420f05bfd19853.tar.gz rockbox-ccf8e4e8bae0e1371f68cdce3e420f05bfd19853.tar.bz2 rockbox-ccf8e4e8bae0e1371f68cdce3e420f05bfd19853.tar.xz | |
jpeg,png: fix typo in comments and indentions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24307 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/imageviewer/imageviewer.h')
| -rw-r--r-- | apps/plugins/imageviewer/imageviewer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/imageviewer/imageviewer.h b/apps/plugins/imageviewer/imageviewer.h index 3851e1f..4ced196 100644 --- a/apps/plugins/imageviewer/imageviewer.h +++ b/apps/plugins/imageviewer/imageviewer.h @@ -394,12 +394,12 @@ extern bool immediate_ata_off; extern bool plug_buf; #endif -/* functions needed to be implemented in each image decoders. */ +/* functions need to be implemented in each image decoders. */ /* return true if ext is supported by the decoder. */ extern bool img_ext(const char *ext); /* return needed size of buffer to store downscaled image by ds */ extern int img_mem(int ds); -/* load image from filename. set width and height of info properly. alos, set +/* load image from filename. set width and height of info properly. also, set * buf_size to remaining size of buf after load image. it is used to caluclate * min downscale. */ extern int load_image(char *filename, struct image_info *info, |