diff options
| author | Nils Wallménius <nils@rockbox.org> | 2009-08-20 16:47:44 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2009-08-20 16:47:44 +0000 |
| commit | 3200d04d75c5e7556ed8880b155533e881a4d1e1 (patch) | |
| tree | 188e2c9525b25cb8922a14766e51ab02bad3f831 /apps/plugins/doom | |
| parent | 0a1728444882cdbc6a0c815bd88464de25ad94e9 (diff) | |
| download | rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.zip rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.tar.gz rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.tar.bz2 rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.tar.xz | |
Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22440 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom')
| -rw-r--r-- | apps/plugins/doom/rockdoom.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c index ca08ec1..1d065cc 100644 --- a/apps/plugins/doom/rockdoom.c +++ b/apps/plugins/doom/rockdoom.c @@ -550,14 +550,15 @@ static bool Doptions() return (1); } -char* choice_get_name(int selected_item, void * data, - char * buffer, size_t buffer_len) +static const char* choice_get_name(int selected_item, void * data, + char * buffer, size_t buffer_len) { - char **names = (char **) data; + const char **names = (const char **) data; (void) buffer; (void) buffer_len; return names[selected_item]; } + int list_action_callback(int action, struct gui_synclist *lists) { (void) lists; @@ -565,6 +566,7 @@ int list_action_callback(int action, struct gui_synclist *lists) return ACTION_STD_CANCEL; return action; } + bool menuchoice(char **names, int count, int *selected) { struct simplelist_info info; |