2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-06 13:25:53 +00:00

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

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;
} }