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 03fcc98 commit 747024fCopy full SHA for 747024f
src/Hacks/SafeMode.cpp
@@ -49,6 +49,8 @@ class HackModuleDelegate : public ModuleChangeDelegate
49
}
50
};
51
52
+#ifndef GEODE_IS_MACOS
53
+
54
std::vector<std::string> hacks = {
55
"speedhack-enabled",
56
"force-plat",
@@ -65,14 +67,19 @@ std::vector<std::string> hacks = {
65
67
"tps-bypass"
66
68
69
70
+#endif
71
72
void Client::onPostSetup()
73
{
74
+ #ifndef GEODE_IS_MACOS
75
76
log::info("post setup");
77
78
for (auto mod : hacks)
79
80
Client::GetModule(mod)->delegate = new HackModuleDelegate();
81
82
+ #endif
83
84
85
void updateSafemode()
0 commit comments