Added sleep on input thread to further reduce CPU usage

This commit is contained in:
Grayson Riffe (Laptop) 2021-08-23 11:16:03 -05:00
parent e238e35bb2
commit 5c6dcaf634

View File

@ -74,6 +74,7 @@ namespace nf {
break; break;
} }
} }
std::this_thread::sleep_for(std::chrono::milliseconds(5));
} }
mainThread.join(); mainThread.join();
} }