Skip to content

Commit 0549ee0

Browse files
committed
whoops
1 parent 66f2062 commit 0549ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Hacks/Global.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class $modify(GameStatsManager) {
2626
class $modify(CCScheduler) {
2727
void update(float dt) {
2828
HackItem* speedhack = Hacks::getHack("Speedhack");
29-
speedhack->value.floatValue = std::max(m_hack->value.floatValue, 0.01f);
29+
speedhack->value.floatValue = std::max(speedhack->value.floatValue, 0.01f);
3030
if (speedhack == nullptr) return CCScheduler::update(dt);
3131
if (speedhack->value.floatValue == 1.0F) return CCScheduler::update(dt);
3232
CCScheduler::update(dt * speedhack->value.floatValue);

0 commit comments

Comments
 (0)