Skip to content

Commit bc7eebf

Browse files
committed
mac
1 parent bb369f4 commit bc7eebf

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Client/ClientSetup.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,6 @@ class ClientUtils
395395
"no-static",
396396
"show-trajectory",
397397
"show-layout",
398-
"menu-pulse",
399398
"no-trans",
400399
"verify-hack",
401400
"coin-tracers",

src/Hacks/PulsingTitle.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ class MenuPulse : public CCNode
4040

4141
void update(float dt)
4242
{
43+
#ifdef GEODE_IS_MACOS
44+
engine->update(dt);
45+
#else
4346
engine->updateMetering();
47+
#endif
4448

4549
#ifdef GEODE_IS_WINDOWS
4650
float met = *(reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(engine) + 0x178));
@@ -56,7 +60,7 @@ class MenuPulse : public CCNode
5660
CREATE_FUNC(MenuPulse);
5761
};
5862

59-
#ifndef GEODE_IS_ANDROID
63+
#ifdef GEODE_IS_WINDOWS
6064

6165
float vPulse = 0;
6266
Module* pul = nullptr;

0 commit comments

Comments
 (0)