Fix missed reference to steady_clock

This commit is contained in:
Luke Street 2021-05-30 15:40:08 -04:00
parent 78bcba85e2
commit 2894ddb768
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ bool CResFactory::AsyncIdle(std::chrono::nanoseconds target) {
return false; return false;
} }
} }
} while (std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::steady_clock::now() - startTime) < } while (std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now() - startTime) <
target); target);
return true; return true;
} }