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

This commit is contained in:
scrawl 2014-06-30 00:08:39 +02:00
parent 082b6125a9
commit 85a1f9d37b

View file

@ -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)
{