Przeglądaj źródła

UI: Make RGB output use RGB, not BGR

Noticed that the red and blue channels were inverted when testing.
jp9000 10 lat temu
rodzic
commit
abdc2b61ce
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      obs/window-basic-main.cpp

+ 1 - 1
obs/window-basic-main.cpp

@@ -1523,7 +1523,7 @@ static inline enum video_format GetVideoFormatFromName(const char *name)
 		return VIDEO_FORMAT_UYVY;
 #endif
 	else
-		return VIDEO_FORMAT_BGRA;
+		return VIDEO_FORMAT_RGBA;
 }
 
 int OBSBasic::ResetVideo()