Kaynağa Gözat

bootmanager: Return value in impossible case

The setting is ranged, so this return statement is unreachable.
But GCC can't tell I guess.
lat9nq 3 yıl önce
ebeveyn
işleme
29a56496bf
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      src/yuzu/bootmanager.cpp

+ 1 - 0
src/yuzu/bootmanager.cpp

@@ -163,6 +163,7 @@ public:
             case Settings::VSyncMode::Mailbox:
                 return 2;
             }
+            return 0;
         }();
 
         format.setSwapInterval(main_surface ? swap_interval : 0);