Skip to content

Commit

Permalink
Reduce loading delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Jan 16, 2023
1 parent 53f056d commit a97cbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ DWORD WINAPI my_thread(void* hModule) {
const unsigned int seed = os_seed();

std::mt19937 generator(seed);
std::uniform_int_distribution<int> distribute(1000, 5000);
std::uniform_int_distribution<int> distribute(250, 1000);
int sleepMs = distribute(generator);
Sleep(sleepMs);

Expand Down

0 comments on commit a97cbbe

Please sign in to comment.