Changeset 63715 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 5, 2016 1:28:43 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r63713 r63715 652 652 * Gather current stream status. 653 653 */ 654 bool fIsEnabled = pHstStream->fStatus & PDMAUDIOSTRMSTS_FLAG_ENABLED; /* Stream is enabled? */654 bool fIsEnabled = RT_BOOL(pHstStream->fStatus & PDMAUDIOSTRMSTS_FLAG_ENABLED); /* Stream is enabled? */ 655 655 656 656 /* -
trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
r63711 r63715 423 423 424 424 char *pszFlags = NULL; 425 int rc2 ;425 int rc2 = VINF_SUCCESS; 426 426 427 427 do
Note:
See TracChangeset
for help on using the changeset viewer.