We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7554955 commit 2c49426Copy full SHA for 2c49426
src/Hacks/PulsingTitle.cpp
@@ -66,7 +66,7 @@ class MenuPulse : public CCNode
66
67
v = as<float>(std::lerp(as<float>(v), as<float>(met), dt * 6.9420f));
68
if (node)
69
- 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);
70
}
71
72
CREATE_FUNC(MenuPulse);
0 commit comments