diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-07-22 13:08:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-07-22 13:08:00 +0000 |
| commit | c897c241d9f085c8a8288183b62b3ea1d9e1796f (patch) | |
| tree | ecbb88d97ed21dae505312e6c11b0100df999d04 | |
| parent | f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (diff) | |
| download | rockbox-c897c241d9f085c8a8288183b62b3ea1d9e1796f.zip rockbox-c897c241d9f085c8a8288183b62b3ea1d9e1796f.tar.gz rockbox-c897c241d9f085c8a8288183b62b3ea1d9e1796f.tar.bz2 rockbox-c897c241d9f085c8a8288183b62b3ea1d9e1796f.tar.xz | |
Recorder V1: repair soft shutdown with the new action context handling.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13957 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/screens.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c index e72c392..c644e0a 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -1128,10 +1128,10 @@ bool shutdown_screen(void) sys_poweroff(); break; - /* do nothing here, because ACTION_UNKNOWN might be caused + /* do nothing here, because ACTION_NONE might be caused * by timeout or button release. In case of timeout the loop * is terminated by TIME_BEFORE */ - case ACTION_UNKNOWN: + case ACTION_NONE: break; default: |