Changeset 89592 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jun 10, 2021 9:38:20 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r89581 r89592 3174 3174 case AudioDriverType_DirectSound: 3175 3175 /* Use the windows audio session (WAS) API rather than Direct Sound on windows 3176 versions we've tested it on (currently W 10+). Since Vista, Direct Sound has3176 versions we've tested it on (currently W7+). Since Vista, Direct Sound has 3177 3177 been emulated on top of WAS according to the docs, so better use WAS directly. */ 3178 3178 pszAudioDriver = "DSoundAudio"; 3179 if (RTSystemGetNtVersion() >= RTSYSTEM_MAKE_NT_VERSION( 10,0,0))3179 if (RTSystemGetNtVersion() >= RTSYSTEM_MAKE_NT_VERSION(6,1,0)) 3180 3180 pszAudioDriver = "HostAudioWas"; 3181 3181 break;
Note:
See TracChangeset
for help on using the changeset viewer.