Skip to content
Snippets Groups Projects
Commit ae2f1e61 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix variadic warning by changing an llformat to an absl::StrFormat

parent e23838b5
No related branches found
No related tags found
No related merge requests found
...@@ -1891,12 +1891,12 @@ void ALAOEngine::processImport(bool aFromTimer) ...@@ -1891,12 +1891,12 @@ void ALAOEngine::processImport(bool aFromTimer)
if (state->mCycleTime) if (state->mCycleTime)
{ {
const std::string oldName = state->mName; const std::string oldName = state->mName;
state->mName = llformat("%s%d",oldName + ":CT",state->mCycleTime); state->mName = absl::StrFormat("%s%d",oldName + ":CT",state->mCycleTime);
} }
if (state->mCycle) if (state->mCycle)
{ {
const std::string oldName = state->mName; const std::string oldName = state->mName;
state->mName = llformat("%s%s", oldName, ":CY"); state->mName = absl::StrFormat("%s%s", oldName, ":CY");
} }
allComplete = false; allComplete = false;
LL_DEBUGS("AOEngine") << "state " << state->mName << " still has animations to link." << LL_ENDL; LL_DEBUGS("AOEngine") << "state " << state->mName << " still has animations to link." << LL_ENDL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment