diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-28 02:01:02 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-28 02:01:02 +0000 |
| commit | bf955a8b6bfb52cedf9c896af0aac7732c8c8790 (patch) | |
| tree | c7a3bfc7bfd6a34644cc8d607a43e93db4e2cde7 /apps | |
| parent | a8dbabef83cece2b40fcefd914445d9476547bbc (diff) | |
| download | rockbox-bf955a8b6bfb52cedf9c896af0aac7732c8c8790.zip rockbox-bf955a8b6bfb52cedf9c896af0aac7732c8c8790.tar.gz rockbox-bf955a8b6bfb52cedf9c896af0aac7732c8c8790.tar.bz2 rockbox-bf955a8b6bfb52cedf9c896af0aac7732c8c8790.tar.xz | |
Bug fix: The splash displayed when trying to soft power off with the charger connected didn't disappear again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5021 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index c9249ca..272ea33 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -1017,10 +1017,10 @@ static bool dirbrowse(const char *root, const int *dirfilter) else { if (!charger_inserted()) { shutdown_screen(); - restore = true; } else { - charging_splash(); + charging_splash(); } + restore = true; } break; #endif |