Changeset 11118 for code/branches/cegui0.8/src/libraries/core/GUIManager.cc
- Timestamp:
- Feb 16, 2016, 10:10:43 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cegui0.8/src/libraries/core/GUIManager.cc
r11101 r11118 664 664 this->setBackgroundImage(""); 665 665 else 666 this->setBackgroundImage( "set: " + imageSet + " image:" + imageName);666 this->setBackgroundImage(imageSet + "/" + imageName); 667 667 } 668 668 … … 907 907 #if CEGUI_VERSION >= 0x000800 908 908 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))); 909 910 #else 910 911 this->guiRenderer_->setDisplaySize(CEGUI::Size((float)newWidth, (float)newHeight)); 911 #endif912 912 this->rootWindow_->setSize(CEGUI::UVector2(CEGUI::UDim(1, (float)newWidth), CEGUI::UDim(1, (float)newHeight))); 913 #endif 913 914 } 914 915
Note: See TracChangeset
for help on using the changeset viewer.