Changeset 27905 in vbox for trunk/src/VBox/Main/DisplayImpl.cpp
- Timestamp:
- Mar 31, 2010 2:19:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r27889 r27905 3214 3214 unsigned id = (unsigned)pCommand->iDisplay; 3215 3215 int rc = VINF_SUCCESS; 3216 if (id < mcMonitors)3216 if (id < mcMonitors) 3217 3217 { 3218 3218 IFramebuffer *pFramebuffer = maFramebuffers[id].pFramebuffer; … … 3224 3224 3225 3225 HRESULT hr = pFramebuffer->ProcessVHWACommand((BYTE*)pCommand); 3226 if (FAILED(hr))3226 if (FAILED(hr)) 3227 3227 { 3228 3228 rc = (hr == E_NOTIMPL) ? VERR_NOT_IMPLEMENTED : VERR_GENERAL_FAILURE; … … 3241 3241 } 3242 3242 3243 if (RT_FAILURE(rc))3243 if (RT_FAILURE(rc)) 3244 3244 { 3245 3245 /* tell the guest the command is complete */
Note:
See TracChangeset
for help on using the changeset viewer.