Changeset 104507 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- May 3, 2024 1:58:16 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163030
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImplConfigX86.cpp
r103091 r104507 80 80 #include <VBox/vmm/pdmdev.h> /* For PDMAPICMODE enum. */ 81 81 #include <VBox/vmm/pdmstorageifs.h> 82 #include <VBox/vmm/gcm.h>83 82 #include <VBox/version.h> 84 83 … … 1069 1068 * Guest Compatibility Manager. 1070 1069 */ 1071 PCFGMNODE pGcmNode; 1072 uint32_t u32FixerSet = 0; 1070 PCFGMNODE pGcmNode; 1073 1071 InsertConfigNode(pRoot, "GCM", &pGcmNode); 1074 /* OS/2 and Win9x guests can run DOS apps so they get 1075 * the DOS specific fixes as well. 1076 */ 1072 /* OS/2 and Win9x guests can run DOS apps so they get the DOS specific 1073 fixes as well. */ 1074 if (fDosGuest || fOs2Guest || fW9xGuest) 1075 InsertConfigInteger(pGcmNode, "DivByZeroDOS", 1); 1077 1076 if (fOs2Guest) 1078 u32FixerSet = GCMFIXER_DBZ_DOS | GCMFIXER_DBZ_OS2; 1079 else if (fW9xGuest) 1080 u32FixerSet = GCMFIXER_DBZ_DOS | GCMFIXER_DBZ_WIN9X; 1081 else if (fDosGuest) 1082 u32FixerSet = GCMFIXER_DBZ_DOS; 1083 InsertConfigInteger(pGcmNode, "FixerSet", u32FixerSet); 1084 1077 InsertConfigInteger(pGcmNode, "DivByZeroOS2", 1); 1078 if (fW9xGuest) 1079 InsertConfigInteger(pGcmNode, "DivByZeroWin9x", 1); 1085 1080 1086 1081 /*
Note:
See TracChangeset
for help on using the changeset viewer.