Skip to content

Commit

Permalink
no std::format
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaghettDev committed Jun 9, 2024
1 parent eb08d50 commit b93e959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ struct BetterTextInputNode : Modify<BetterTextInputNode, CCTextInputNode>
);
highlight->setAnchorPoint({ .0f, .5f });
highlight->setVisible(false);
highlight->setID(std::format(GEODE_MOD_ID "/highlight-sprite-{}", m_fields->m_highlights.size() + 1));
highlight->setID(fmt::format(GEODE_MOD_ID "/highlight-sprite-{}", m_fields->m_highlights.size() + 1));
this->addChild(highlight, 10);

m_fields->m_highlights.emplace_back(highlight);
Expand Down

0 comments on commit b93e959

Please sign in to comment.