Don't adjust timer period when ENet is initialized

We handle this elsewhere in Moonlight and Sunshine when actually streaming
This commit is contained in:
Cameron Gutman
2023-07-07 21:41:49 -05:00
parent 47e42dbf42
commit fc123218d3
-4
View File
@@ -50,8 +50,6 @@ enet_initialize (void)
return -1;
}
timeBeginPeriod (1);
QwaveLibraryHandle = LoadLibraryA("qwave.dll");
if (QwaveLibraryHandle != NULL) {
pfnQOSCreateHandle = (void*)GetProcAddress(QwaveLibraryHandle, "QOSCreateHandle");
@@ -92,8 +90,6 @@ enet_deinitialize (void)
QwaveLibraryHandle = NULL;
}
timeEndPeriod (1);
WSACleanup ();
}