mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
Add a silly sleep
This commit is contained in:
parent
f808bcb8d2
commit
1ac0fd1a90
1 changed files with 5 additions and 1 deletions
|
@ -617,7 +617,8 @@ std::string LLVMProgram::DumpModule()
|
|||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (argc != 2)
|
||||
|
@ -660,5 +661,8 @@ int main(int argc, char **argv)
|
|||
//LLVMDrawers drawersAVX("sandybridge");
|
||||
//LLVMDrawers drawersAVX2("haswell");
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
std::this_thread::sleep_for(2s); // Doh! Silly OS!
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue