diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-14 17:27:21 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-14 17:27:21 +0000 |
| commit | e76981c912aca065f1efd788eb7404f52111cacf (patch) | |
| tree | dbf5242c2faa550f4a625cbc7358771d7950ca84 /apps/plugins | |
| parent | 7fe66302ad2a0e3506ac00e8ca470ea15148717d (diff) | |
| download | rockbox-e76981c912aca065f1efd788eb7404f52111cacf.zip rockbox-e76981c912aca065f1efd788eb7404f52111cacf.tar.gz rockbox-e76981c912aca065f1efd788eb7404f52111cacf.tar.bz2 rockbox-e76981c912aca065f1efd788eb7404f52111cacf.tar.xz | |
The code police strikes back
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12765 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/credits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c index 8f619c4..8ed3161 100644 --- a/apps/plugins/credits.c +++ b/apps/plugins/credits.c @@ -49,12 +49,12 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) btn = rb->button_get(false); if (btn != BUTTON_NONE && !(btn & BUTTON_REL)) - goto EndOfProc; + goto end_of_proc; } roll_credits(); -EndOfProc: +end_of_proc: /* Restore the values we've changed */ rb->backlight_set_timeout(rb->global_settings->backlight_timeout); |