Changeset 11454 for code/branches/ogre1.9/src/libraries/core
- Timestamp:
- Oct 15, 2017, 4:29:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ogre1.9/src/libraries/core/GUIManager.cc
r11453 r11454 482 482 assert(guiSystem_); 483 483 this->protectedCeguiSystemCall(std::bind(&CEGUI::System::injectTimePulse, arg::_1, time.getDeltaTime())); 484 #if CEGUI_VERSION >= 0x000800 485 this->protectedCeguiContextCall(std::bind(&CEGUI::GUIContext::injectTimePulse, arg::_1, time.getDeltaTime())); 486 #endif 484 487 } 485 488 … … 907 910 #if CEGUI_VERSION >= 0x000800 908 911 this->guiRenderer_->setDisplaySize(CEGUI::Sizef((float)newWidth, (float)newHeight)); 909 this->rootWindow_->setSize(CEGUI:: Size<CEGUI::UDim>(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight)));912 this->rootWindow_->setSize(CEGUI::USize(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight))); 910 913 #else 911 914 this->guiRenderer_->setDisplaySize(CEGUI::Size((float)newWidth, (float)newHeight));
Note: See TracChangeset
for help on using the changeset viewer.