UI: Make RGB output use RGB, not BGR

Noticed that the red and blue channels were inverted when testing.
This commit is contained in:
jp9000
2015-04-15 18:42:06 -07:00
parent a32f8a5d19
commit abdc2b61ce

View File

@@ -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()