Changeset 101195 in vbox
- Timestamp:
- Sep 20, 2023 1:13:14 PM (12 months ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/src-server/GuestOSTypeImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/GuestOSTypeImpl.cpp
r101188 r101195 212 212 /* mOSType constant during life time, no need to lock */ 213 213 VBOXOSTYPE const osTypePlatformArchitectureMasked = VBOXOSTYPE(mOSType & VBOXOSTYPE_ArchitectureMask); 214 if ( osTypePlatformArchitectureMasked &VBOXOSTYPE_x86215 || osTypePlatformArchitectureMasked &VBOXOSTYPE_x64)214 if ( osTypePlatformArchitectureMasked == VBOXOSTYPE_x86 215 || osTypePlatformArchitectureMasked == VBOXOSTYPE_x64) 216 216 return PlatformArchitecture_x86; 217 else if ( osTypePlatformArchitectureMasked &VBOXOSTYPE_ARM32218 || osTypePlatformArchitectureMasked &VBOXOSTYPE_ARM64)217 else if ( osTypePlatformArchitectureMasked == VBOXOSTYPE_ARM32 218 || osTypePlatformArchitectureMasked == VBOXOSTYPE_ARM64) 219 219 return PlatformArchitecture_ARM; 220 220
Note:
See TracChangeset
for help on using the changeset viewer.

