소스 검색

DisplayManagerWin: mode==0 is valid

Vincent Lang 9 년 전
부모
커밋
99a09b7df5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/display/win/DisplayManagerWin.cpp

+ 1 - 1
src/display/win/DisplayManagerWin.cpp

@@ -153,7 +153,7 @@ int DisplayManagerWin::getDisplayFromPoint(int x, int y)
   foreach (int displayId, displays.keys())
   {
     int currentMode = getCurrentDisplayMode(displayId);
-    if (currentMode > 0)
+    if (currentMode >= 0)
     {
       DEVMODEW modeInfo;
       if (getModeInfo(displayId, currentMode, modeInfo))