Skip to content

Commit e161628

Browse files
committed
asdf
1 parent 5b4bfaf commit e161628

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Client/AndroidUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ bool AndroidUI::init()
180180

181181
btn2->addChild(lbl2);
182182

183-
auto b = CCMenuItemSprite::create(btn2, btn, windowsMenu, menu_selector(AndroidUI::onPressTab));
183+
auto b = CCMenuItemSpriteExtra::create(btn2, btn, windowsMenu, menu_selector(AndroidUI::onPressTab));
184184
b->setTag(i);
185185
b->setEnabled(i != selectedTab);
186186
b->setUserData(this);

src/Client/AndroidUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using namespace geode::prelude;
88
class AndroidUI : public cocos2d::CCLayerColor, TextInputDelegate {
99
public:
1010
static inline std::vector<CCLabelBMFont*> labels = {};
11-
static inline std::vector<CCMenuItemSprite*> buttons = {};
11+
static inline std::vector<CCMenuItemSpriteExtra*> buttons = {};
1212
static inline std::vector<CCMenu*> pages = {};
1313
CCScale9Sprite* panel = nullptr;
1414
CCLabelBMFont* searchLabel = nullptr;

src/Hacks/TPSBypass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void updateTPSPatches(bool tpsEnabled)
5252
#endif
5353

5454
#ifdef GEODE_IS_MACOS
55-
patches.push_back(Mod::get()->patch(reinterpret_cast<void*>(geode::base::get() + (7e9c60)), getBytes<float>(1.0f / tps)).unwrap());
55+
patches.push_back(Mod::get()->patch(reinterpret_cast<void*>(geode::base::get() + 0x7e9c60), getBytes<float>(1.0f / tps)).unwrap());
5656
#endif
5757
}
5858
}

0 commit comments

Comments
 (0)