Browse Source

DisplayManagerWin: clear previous state when listing display/modes again

So what if the method is called "initialize", it can be run multiple
times anyway. Probably doesn't fix much. Completely untested.
Vincent Lang 9 years ago
parent
commit
bbdfb39b8d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/display/win/DisplayManagerWin.cpp

+ 3 - 0
src/display/win/DisplayManagerWin.cpp

@@ -17,6 +17,9 @@ bool DisplayManagerWin::initialize()
   DISPLAY_DEVICEW displayInfo;
   int displayId = 0;
 
+  m_displayAdapters.clear();
+  displays.clear();
+
   while (getDisplayInfo(displayId, displayInfo))
   {
     if (displayInfo.StateFlags & (DISPLAY_DEVICE_ACTIVE | DISPLAY_DEVICE_ATTACHED))