Skip to content

Commit

Permalink
mrrow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Oct 1, 2024
1 parent 7554955 commit 2c49426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hacks/PulsingTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class MenuPulse : public CCNode

v = as<float>(std::lerp(as<float>(v), as<float>(met), dt * 6.9420f));
if (node)
node->setScale(mod->enabled ? (0.85f + clampf(v * 0.25f, 0, 1)) : 1);
node->setScale(mod->enabled ? (0.85f + clamp<float>(v * 0.25f, 0, 1)) : 1);
}

CREATE_FUNC(MenuPulse);
Expand Down

0 comments on commit 2c49426

Please sign in to comment.