Skip to content

Commit

Permalink
8008135
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Jan 24, 2024
1 parent af5a848 commit 66013cf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Client/AndroidUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,12 @@ class $modify (LoadingLayer)
{
bool init(bool p0)
{
LoadingLayer::init(p0);
if (!LoadingLayer::init(p0))
return false;

this->setID("loading-layer");

return true;
}
};

Expand Down Expand Up @@ -568,8 +572,7 @@ class $modify (AchievementNotifier)

AchievementNotifier::willSwitchToScene(p0);

//if (!p0->getChildByID("loading-layer"))
if (true)
if (!p0->getChildByID("loading-layer"))
{
auto andBall = AndroidBall::create();
if (andBall)
Expand Down

0 comments on commit 66013cf

Please sign in to comment.