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

Merge pull request #212 from seungjo0109/fix_typo_sample

Fix typo in sample/main.cpp
This commit is contained in:
Sergey Yagovtsev 2024-09-20 19:21:43 +03:00 committed by GitHub
commit e262d8925e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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