Changeset 11117 for code/trunk
- Timestamp:
- Feb 15, 2016, 10:54:29 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/cmake/PackageConfigMinGW.cmake
r11113 r11117 29 29 30 30 INCLUDE(CheckPackageVersion) 31 CHECK_PACKAGE_VERSION(7.1 )31 CHECK_PACKAGE_VERSION(7.1 8.0) 32 32 33 33 # 64 bit system? -
code/trunk/cmake/tools/FindCEGUI.cmake
r11101 r11117 106 106 # Find CEGUI Tolua++ libraries 107 107 FIND_LIBRARY(CEGUI_TOLUA_LIBRARY_OPTIMIZED 108 NAMES CEGUItoluapp tolua++ ceguitolua++ tolua++5.1108 NAMES CEGUItoluapp tolua++ toluapp ceguitolua++ tolua++5.1 109 109 PATHS $ENV{CEGUIDIR} ${CEGUITOLUADIR} 110 110 PATH_SUFFIXES lib bin -
code/trunk/src/libraries/core/GUIManager.cc
r11101 r11117 907 907 #if CEGUI_VERSION >= 0x000800 908 908 this->guiRenderer_->setDisplaySize(CEGUI::Sizef((float)newWidth, (float)newHeight)); 909 this->rootWindow_->setSize(CEGUI::USize(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.