diff options
| author | Nils Wallménius <nils@rockbox.org> | 2008-10-08 16:32:01 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2008-10-08 16:32:01 +0000 |
| commit | 48b52aec468309ef00fc4bfee3b3fff969969661 (patch) | |
| tree | 1c74a2cb6c17840b080e0e09fdcad0bae05fbb8c /apps/settings.h | |
| parent | 88c60e6b07b00e737e75d157a2a9b72908d627e8 (diff) | |
| download | rockbox-48b52aec468309ef00fc4bfee3b3fff969969661.zip rockbox-48b52aec468309ef00fc4bfee3b3fff969969661.tar.gz rockbox-48b52aec468309ef00fc4bfee3b3fff969969661.tar.bz2 rockbox-48b52aec468309ef00fc4bfee3b3fff969969661.tar.xz | |
Fix FS#8949 - Alphabetical directory listing reversed after "Error Accessing Directory", patch by pondlife, some long line police by me, also kill a few error splashes in functions that could be called by threads other than UI
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18742 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index f1fd7cc..9ba4396 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -139,6 +139,10 @@ enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB, NUM_FILTER_MODES, SHOW_WPS, SHOW_RWPS, SHOW_FMR, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; +/* file and dir sort options */ +enum { SORT_ALPHA, SORT_DATE, SORT_DATE_REVERSED, SORT_TYPE, /* available as settings */ + SORT_ALPHA_REVERSED, SORT_TYPE_REVERSED }; /* internal use only */ + /* recursive dir insert options */ enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK }; |