1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Platform: Remove compatibility checks for Windows 8.1 and earlier

This commit is contained in:
reuk 2024-07-01 19:01:21 +01:00
parent 8ba2dc2ae2
commit 5c1b75cab7
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
5 changed files with 8 additions and 31 deletions

View file

@ -69,12 +69,6 @@ void AudioIODeviceType::callDeviceChangeListeners()
#if JUCE_WINDOWS && JUCE_WASAPI
AudioIODeviceType* AudioIODeviceType::createAudioIODeviceType_WASAPI (WASAPIDeviceMode deviceMode)
{
auto windowsVersion = SystemStats::getOperatingSystemType();
if (windowsVersion < SystemStats::WinVista
|| (WasapiClasses::isLowLatencyMode (deviceMode) && windowsVersion < SystemStats::Windows10))
return nullptr;
return new WasapiClasses::WASAPIAudioIODeviceType (deviceMode);
}