Browse Source

SC: use std:: for printf

tags/v1.3.0
Brian Heim 5 years ago
parent
commit
3f4820eacf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/SuperColliderEngine.cpp

+ 2
- 2
src/SuperColliderEngine.cpp View File

@@ -331,11 +331,11 @@ void SC_VcvPrototypeClient::evaluateProcessBlock(ProcessBlock* block) noexcept {
if (gmax < ticks)
{
gmax = ticks;
printf("MAX TIME %lld\n", ticks);
std::printf("MAX TIME %lld\n", ticks);
}
if (timesIndex == 0)
{
printf("AVG TIME %lld\n", std::accumulate(std::begin(times), std::end(times), 0ull) / nTimes);
std::printf("AVG TIME %lld\n", std::accumulate(std::begin(times), std::end(times), 0ull) / nTimes);
}
#endif
}


Loading…
Cancel
Save