0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00

Fix typo in sample/main.cpp

This commit is contained in:
seungjo0109 2024-04-02 13:15:18 +09:00
parent 04a472121e
commit aa7f3dab0f

View File

@ -233,8 +233,8 @@ int main(int argc, char* argv[])
} }
std::cout << "Objects count: " << OBJECTS << std::endl; std::cout << "Objects count: " << OBJECTS << std::endl;
std::cout << "Render steps: " << MODELLING_STEPS << std::endl; std::cout << "Render steps: " << RENDER_STEPS << std::endl;
std::cout << "Modelling steps: " << RENDER_STEPS << std::endl; std::cout << "Modelling steps: " << MODELLING_STEPS << std::endl;
std::cout << "Resource loading count: " << RESOURCE_LOADING_COUNT << std::endl; std::cout << "Resource loading count: " << RESOURCE_LOADING_COUNT << std::endl;
auto start = std::chrono::system_clock::now(); auto start = std::chrono::system_clock::now();