Skip to content

Commit

Permalink
Update main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiLko authored Feb 18, 2024
1 parent 2234e11 commit a6da8d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ CCLabelBMFont* fpsLabel = nullptr;
protected:
bool setup(std::string const& value) override {
auto winSize = cocos2d::CCDirector::sharedDirector()->getWinSize();
auto versionLabel = CCLabelBMFont::create("xdBot v1.4.6 - made by Zilko", "chatFont.fnt");
auto versionLabel = CCLabelBMFont::create("xdBot v1.4.7 - made by Zilko", "chatFont.fnt");
versionLabel->setOpacity(60);
versionLabel->setAnchorPoint(ccp(0.0f,0.5f));
versionLabel->setPosition(winSize/2 + ccp(-winSize.width/2, -winSize.height/2) + ccp(3, 6));
Expand Down Expand Up @@ -1298,7 +1298,7 @@ void GJBaseGameLayerProcessCommands(GJBaseGameLayer* self) {
safeModeEnabled = true;
safeMode::updateSafeMode();
}
log::debug("xd - {}", currentActionIndex.p1.yPos);
log::debug("{} - {}", currentActionIndex.frame, std::to_string(currentActionIndex.p1.yPos));
if (!Mod::get()->getSettingValue<bool>("override_macro_mode") && currentActionIndex.p1.xPos != 0) {
if (!areEqual(self->m_player1->getPositionX(), currentActionIndex.p1.xPos) ||
!areEqual(self->m_player1->getPositionY(), currentActionIndex.p1.yPos))
Expand Down

0 comments on commit a6da8d6

Please sign in to comment.