From 08b66de39107becba2ee7ab780fa707c3602e79c Mon Sep 17 00:00:00 2001 From: Explodingbill Date: Wed, 14 Aug 2024 20:09:22 +1000 Subject: [PATCH] that was not, in fact, gg ez --- changelog.md | 2 +- src/ColonThree.cpp | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 161c9d0..09178fd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,7 @@ # 1.5.7 - Fixed Mouse Cursor not disappearing when closing the menu while in a level -- Added a secret if you type ":3" into the vault of secrets +- Fixed not being able to move in platformer mode on arm / m1 macOS - Added **Force Ghost Trail On and Off** # 1.5.6 diff --git a/src/ColonThree.cpp b/src/ColonThree.cpp index dc1c92d..bc3cff8 100644 --- a/src/ColonThree.cpp +++ b/src/ColonThree.cpp @@ -1,3 +1,5 @@ +#ifndef __APPLE__ + #include #include #include "Client/AndroidBall.h" @@ -61,4 +63,6 @@ class $modify (SecretLayer2) updateMessageLabel(getColonThreeLabel()); } -}; \ No newline at end of file +}; + +#endif \ No newline at end of file