Skip to content

Commit

Permalink
Update plugify
Browse files Browse the repository at this point in the history
  • Loading branch information
qubka committed Jun 15, 2024
1 parent 64753c8 commit 03a4d6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/mm_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ namespace plugifyMM
std::string result(tab);
if (t.GetState() != S::Loaded)
{
std::format_to(std::back_inserter(result), "[{:02d}] <{}> {}", static_cast<int>(t.GetId()), f(t.GetState()), t.GetFriendlyName());
std::format_to(std::back_inserter(result), "[{:02d}] <{}> {}", t.GetId(), f(t.GetState()), t.GetFriendlyName());
}
else
{
std::format_to(std::back_inserter(result), "[{:02d}] {}", static_cast<int>(t.GetId()), t.GetFriendlyName());
std::format_to(std::back_inserter(result), "[{:02d}] {}", t.GetId(), t.GetFriendlyName());
}
if (!t.GetDescriptor().versionName.empty())
{
Expand All @@ -94,7 +94,7 @@ namespace plugifyMM
}
else
{
CONPRINTF("%s %d is %s.\n", name, static_cast<int>(t.GetId()), f(t.GetState()).data());
CONPRINTF("%s %d is %s.\n", name, t.GetId(), f(t.GetState()).data());
}
if (!t.GetDescriptor().createdBy.empty())
{
Expand Down

0 comments on commit 03a4d6c

Please sign in to comment.