Skip to content

Commit

Permalink
Fixed linux compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fLindahl committed Nov 11, 2024
1 parent 80a8734 commit cabd9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolkit/assetbatcher/assetbatcherapp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ AssetBatcherApp::Run()
float seconds = Math::fmod(totalTime.GetTime(), 60.0f);
Util::String time = Util::String::FromInt(minutes) + "m " + Util::String::FromFloat(seconds) + "s\n";
this->logger.Print(
ToolkitUtil::Text::Text(time).Color(ToolkitUtil::TextColor::Green).Style(ToolkitUtil::FontMode::Bold).AsCharPtr()
ToolkitUtil::Text(time).Color(ToolkitUtil::TextColor::Green).Style(ToolkitUtil::FontMode::Bold).AsCharPtr()
);
}
}
Expand Down

0 comments on commit cabd9af

Please sign in to comment.