Skip to content

Commit

Permalink
macOS compatibility for the Modtober winner animation (#1190)
Browse files Browse the repository at this point in the history
no vaargs binding
  • Loading branch information
hiimjustin000 authored Dec 12, 2024
1 parent 9a752b2 commit 695f39f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions loader/src/ui/mods/events/EventWinnerAnimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,12 @@ bool EventWinnerAnimation::init() {
auto cloud = CCSprite::createWithSpriteFrameName("d_artCloud_03_001.png");
cloud->setColor(ccBLACK);
cloud->runAction(CCSequence::create(
CCSpawn::create(
ShakeyWakey::create(2.f),
CCScaleTo::create(2.f, 2.f),
CCTintTo::create(2.f, 255, 255, 255),
nullptr
CCSpawn::createWithTwoActions(
CCSpawn::createWithTwoActions(
ShakeyWakey::create(2.f),
CCScaleTo::create(2.f, 2.f)
),
CCTintTo::create(2.f, 255, 255, 255)
),
nullptr
));
Expand Down

0 comments on commit 695f39f

Please sign in to comment.