clarify output for star generation time

This commit is contained in:
Stephen Birarda 2014-01-15 16:26:01 -08:00
parent 106c8f9f22
commit a694425823

View file

@ -19,7 +19,8 @@ bool Controller::computeStars(unsigned numStars, unsigned seed) {
this->retile(numStars, _tileResolution);
qDebug() << "Total time to generate stars: " << ((usecTimestampNow() - usecTimestamp(&startTime)) / 1000) << "msec";
qDebug() << "Total time to retile and generate stars: "
<< ((usecTimestampNow() - usecTimestamp(&startTime)) / 1000) << "msec";
return true;
}