Skip to content

Commit

Permalink
Real real fix for $
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphalaneous authored Oct 18, 2024
1 parent 3c1ea62 commit 186a8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UIModding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,7 @@ void UIModding::doUICheck(CCNode* node) {

std::string nodeID = node->getID();
std::replace(nodeID.begin(), nodeID.end(), '/', '$');
std::string path = "ui/" + nodeID->getID() + ".json"
std::string path = "ui/" + nodeID + ".json"


unsigned long fileSize = 0;
Expand Down

0 comments on commit 186a8a0

Please sign in to comment.