mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
remove double entries
This commit is contained in:
parent
14d074e3e7
commit
bb39a85f16
@ -205,6 +205,19 @@ bool GraphicsPage::setupSDLWordaround() {
|
||||
SDL_Quit();
|
||||
return false;
|
||||
}
|
||||
|
||||
bool isDouble = false;
|
||||
for (std::vector<VideoMode>::iterator it = mVideoModes.begin(); it != mVideoModes.end(); it++)
|
||||
{
|
||||
if ((*it).w == mode.w && (*it).h == mode.h && (*it).screen == displayIndex)
|
||||
{
|
||||
isDouble = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (isDouble)
|
||||
continue;
|
||||
|
||||
VideoMode vmode;
|
||||
vmode.w = mode.w;
|
||||
vmode.h = mode.h;
|
||||
|
Loading…
x
Reference in New Issue
Block a user