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 bb369f4 commit bc7eebfCopy full SHA for bc7eebf
src/Client/ClientSetup.h
@@ -395,7 +395,6 @@ class ClientUtils
395
"no-static",
396
"show-trajectory",
397
"show-layout",
398
- "menu-pulse",
399
"no-trans",
400
"verify-hack",
401
"coin-tracers",
src/Hacks/PulsingTitle.cpp
@@ -40,7 +40,11 @@ class MenuPulse : public CCNode
40
41
void update(float dt)
42
{
43
+ #ifdef GEODE_IS_MACOS
44
+ engine->update(dt);
45
+ #else
46
engine->updateMetering();
47
+ #endif
48
49
#ifdef GEODE_IS_WINDOWS
50
float met = *(reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(engine) + 0x178));
@@ -56,7 +60,7 @@ class MenuPulse : public CCNode
56
60
CREATE_FUNC(MenuPulse);
57
61
};
58
62
59
-#ifndef GEODE_IS_ANDROID
63
+#ifdef GEODE_IS_WINDOWS
64
65
float vPulse = 0;
66
Module* pul = nullptr;
0 commit comments