yse / easy_profiler

Lightweight profiler library for c++
MIT License
2.14k stars 184 forks source link

Fix typo in sample/main.cpp #212

Open seungjo0109 opened 5 months ago

seungjo0109 commented 5 months ago

I've corrected a typo in sample/main.cpp.

Changed the code from:

std::cout << "Render steps: " << MODELLING_STEPS << std::endl; std::cout << "Modelling steps: " << RENDER_STEPS << std::endl;

to:

std::cout << "Render steps: " << RENDER_STEPS << std::endl; std::cout << "Modelling steps: " << MODELLING_STEPS << std::endl;