Fall back to resolution selected from list when switching to fullscreen (Fixes #1599)

deque
scrawl 11 years ago
parent 082b6125a9
commit 85a1f9d37b

@ -322,6 +322,15 @@ namespace MWGui
if (_sender == mFullscreenButton)
{
// check if this resolution is supported in fullscreen
if (mResolutionList->getIndexSelected() != MyGUI::ITEM_NONE)
{
std::string resStr = mResolutionList->getItemNameAt(mResolutionList->getIndexSelected());
int resX, resY;
parseResolution (resX, resY, resStr);
Settings::Manager::setInt("resolution x", "Video", resX);
Settings::Manager::setInt("resolution y", "Video", resY);
}
bool supported = false;
for (unsigned int i=0; i<mResolutionList->getItemCount(); ++i)
{

Loading…
Cancel
Save