diff options
author | Mathias Agopian <mathias@google.com> | 2009-09-23 18:52:49 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2009-09-23 18:52:49 -0700 |
commit | 8434c5369304e639efe8eab368ca410c589d87c2 (patch) | |
tree | 4b1db74f52e8308221b7e918e7075a2785e98901 /cmds | |
parent | 769de37e2108542f7085536e46ddcd8eab8ad69b (diff) | |
download | frameworks_base-8434c5369304e639efe8eab368ca410c589d87c2.zip frameworks_base-8434c5369304e639efe8eab368ca410c589d87c2.tar.gz frameworks_base-8434c5369304e639efe8eab368ca410c589d87c2.tar.bz2 |
the boot animation is back! it broke in a recent check-in
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/bootanimation/BootAnimation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index c8c142d..834a664 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -63,7 +63,7 @@ BootAnimation::~BootAnimation() { void BootAnimation::onFirstRef() { status_t err = mSession->linkToComposerDeath(this); LOGE_IF(err, "linkToComposerDeath failed (%s) ", strerror(-err)); - if (err != NO_ERROR) { + if (err == NO_ERROR) { run("BootAnimation", PRIORITY_DISPLAY); } } |