Changeset 80248 in vbox for trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
- Timestamp:
- Aug 13, 2019 10:57:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r80074 r80248 823 823 824 824 BOOL fOsXGuest = FALSE; 825 BOOL fWinGuest = FALSE; 825 826 if (!pGuestOSType.isNull()) 826 827 { … … 828 829 hrc = pGuestOSType->COMGETTER(FamilyId)(guestTypeFamilyId.asOutParam()); H(); 829 830 fOsXGuest = guestTypeFamilyId == Bstr("MacOS"); 831 fWinGuest = guestTypeFamilyId == Bstr("Windows"); 830 832 } 831 833 … … 3165 3167 "fix the host 3D support (update the host graphics driver?) " 3166 3168 "or disable 3D acceleration in the VM settings")); 3169 3170 if (fWinGuest) 3171 i_atVMRuntimeErrorCallbackF(0, "3DCrDeprecated", 3172 N_("This VM is configured to use 3D acceleration using the VBoxVGA " 3173 "graphics controller. Support for this will be removed with version " 3174 "6.1.0. ALL saved states and snapshots will cease to work when using this " 3175 "configuration. Either switch to the VBoxSVGA (or VMSVGA) graphics controller " 3176 "and update guest additions, or disable 3D acceleration")); 3177 else 3178 i_atVMRuntimeErrorCallbackF(0, "3DCrDeprecated", 3179 N_("This VM is configured to use 3D acceleration using the VBoxVGA " 3180 "graphics controller. Support for this will be removed with version " 3181 "6.1.0. ALL saved states and snapshots will cease to work when using this " 3182 "configuration. Either switch to the VMSVGA graphics controller " 3183 "and update guest additions, or disable 3D acceleration")); 3167 3184 3168 3185 /* Load the service. */
Note:
See TracChangeset
for help on using the changeset viewer.