- Timestamp:
- Jun 9, 2009 12:51:18 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r20433 r20435 209 209 static ComPtr<IProgress> gProgress; 210 210 211 static unsignedgcMonitors = 1;211 static ULONG gcMonitors = 1; 212 212 static VBoxSDLFB *gpFramebuffer[64]; 213 213 //static VBoxSDLFB *gpFramebufferCurrent = NULL; … … 2057 2057 #endif 2058 2058 2059 for ( unsignedi = 0; i < gcMonitors; i++)2059 for (ULONG i = 0; i < gcMonitors; i++) 2060 2060 { 2061 2061 // register our framebuffer … … 2067 2067 } 2068 2068 IFramebuffer *dummyFb; 2069 intxOrigin, yOrigin;2069 LONG xOrigin, yOrigin; 2070 2070 rc = gDisplay->GetFramebuffer(i, &dummyFb, &xOrigin, &yOrigin); 2071 2071 gpFramebuffer[i]->setOrigin(xOrigin, yOrigin); … … 2775 2775 LogFlow(("SDL_USER_EVENT_RESIZE\n")); 2776 2776 IFramebuffer *dummyFb; 2777 intxOrigin, yOrigin;2777 LONG xOrigin, yOrigin; 2778 2778 gpFramebuffer[event.user.code]->resizeGuest(); 2779 2779 /* update xOrigin, yOrigin -> mouse */
Note:
See TracChangeset
for help on using the changeset viewer.