diff --git a/src/tools/mmaps_generator/PathGenerator.cpp b/src/tools/mmaps_generator/PathGenerator.cpp index 932395b984a..9625b1d7f1f 100644 --- a/src/tools/mmaps_generator/PathGenerator.cpp +++ b/src/tools/mmaps_generator/PathGenerator.cpp @@ -22,6 +22,7 @@ #include "MapBuilder.h" #include "PathCommon.h" #include "Timer.h" +#include "Util.h" #include "VMapFactory.h" #include "VMapManager2.h" #include @@ -415,6 +416,6 @@ int main(int argc, char** argv) VMAP::VMapFactory::clear(); if (!silent) - printf("Finished. MMAPS were built in %u ms!\n", GetMSTimeDiffToNow(start)); + printf("Finished. MMAPS were built in %s\n", secsToTimeString(GetMSTimeDiffToNow(start) / 1000).c_str()); return 0; }