Changeset 99680 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- May 8, 2023 4:50:51 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r98297 r99680 4969 4969 aa.driverType = AudioDriverType_MMPM; 4970 4970 else 4971 throw ConfigFileError(this, &elmAudioAdapter, N_("Invalid value '%s' in AudioAdapter/@driver attribute"), strTemp.c_str()); 4971 { 4972 /* Be nice when loading the settings on downgraded versions: In case the selected backend isn't available / known 4973 * to this version, fall back to the default backend, telling the user in the release log. See @bugref{10051c7}. */ 4974 LogRel(("WARNING: Invalid value '%s' in AudioAdapter/@driver attribute found; falling back to default audio backend\n", 4975 strTemp.c_str())); 4976 aa.driverType = AudioDriverType_Default; 4977 } 4972 4978 4973 4979 /* When loading settings >= 1.19 (VBox 7.0), the attribute "useDefault" will determine if the VM should use
Note:
See TracChangeset
for help on using the changeset viewer.