Skip to content

Commit 03fcc98

Browse files
committed
g
1 parent e161628 commit 03fcc98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 = CCMenuItemSpriteExtra::create(btn2, btn, windowsMenu, menu_selector(AndroidUI::onPressTab));
183+
auto b = CCMenuItemSprite::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<CCMenuItemSpriteExtra*> buttons = {};
11+
static inline std::vector<CCMenuItemSprite*> buttons = {};
1212
static inline std::vector<CCMenu*> pages = {};
1313
CCScale9Sprite* panel = nullptr;
1414
CCLabelBMFont* searchLabel = nullptr;

0 commit comments

Comments
 (0)