Skip to content

Commit

Permalink
Use status logging helper, rather than manual cout usage
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthayhurst committed Aug 29, 2023
1 parent 2234ee6 commit 130cdcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ int main(int argc, char* argv[]) {
ammonite::camera::setPosition(cameraIds[1], glm::vec3(0.0f, 0.0f, 2.0f));

//Engine loaded, delete the loading screen
std::cout << "STATUS: Loaded demo in " << utilityTimer.getTime() << "s" << std::endl;
ammonite::utils::status << "Loaded demo in " << utilityTimer.getTime() << "s" << std::endl;
ammonite::interface::deleteLoadingScreen(screenId);

//Create and reset timers for performance metrics
Expand Down

0 comments on commit 130cdcb

Please sign in to comment.