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.c | |
| 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.c')
| -rw-r--r-- | apps/plugins/imageviewer/imageviewer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/imageviewer/imageviewer.c b/apps/plugins/imageviewer/imageviewer.c index 1b39c5a..c35c1f2 100644 --- a/apps/plugins/imageviewer/imageviewer.c +++ b/apps/plugins/imageviewer/imageviewer.c @@ -39,7 +39,7 @@ GREY_INFO_STRUCT /******************************* Globals ***********************************/ bool slideshow_enabled = false; /* run slideshow */ -bool running_slideshow = false; /* loading image because of slideshw */ +bool running_slideshow = false; /* loading image because of slideshow */ #ifdef DISK_SPINDOWN bool immediate_ata_off = false; /* power down disk after loading */ #endif @@ -120,7 +120,7 @@ static char **file_pt; /************************* Implementation ***************************/ -/*Read directory contents for scrolling. */ +/* Read directory contents for scrolling. */ static void get_pic_list(void) { int i; @@ -295,7 +295,7 @@ static int show_menu(void) /* return 1 to quit */ case MIID_RETURN: break; case MIID_TOGGLE_SS_MODE: - rb->set_option("Toggle Slideshow", &slideshow_enabled, INT, + rb->set_option("Toggle Slideshow", &slideshow_enabled, BOOL, slideshow , 2, NULL); break; case MIID_CHANGE_SS_MODE: |