Skip to content

Commit

Permalink
fmt::format
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Jul 28, 2024
1 parent bf819ef commit c7d0487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_a_autoupdate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inline void download(std::string url = "", fs::path path = "", std::function<voi
SceneManager::get()->keepAcrossScenes(layer);

auto downloadingLabel = CCLabelBMFont::create(
std::format("Downloading {}...", fs::path(url).filename().string()).c_str(),
fmt::format("Downloading {}...", fs::path(url).filename().string()).c_str(),
"goldFont.fnt"
);
layer->setID("downloadingLabel"_spr);
Expand Down

0 comments on commit c7d0487

Please sign in to comment.