- Timestamp:
- Mar 26, 2009 12:46:33 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibVideo.cpp
r13556 r18309 217 217 VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits) 218 218 { 219 bool fRc = false; 219 bool fRc = true; /* If for some reason we can't contact the host then 220 * we like everything. */ 220 221 int rc; 221 222 VMMDevVideoModeSupportedRequest req; … … 225 226 req.height = cy; 226 227 req.bpp = cBits; 227 req.fSupported = false;228 req.fSupported = true; 228 229 rc = vbglR3GRPerform(&req.header); 229 230 if (RT_SUCCESS(rc) && RT_SUCCESS(req.header.rc))
Note:
See TracChangeset
for help on using the changeset viewer.