mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-15 23:09:09 +00:00
cellCamera: don't flip qt image vertically by default
This commit is contained in:
parent
354db953e6
commit
9dc6d920ce
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ bool qt_camera_video_surface::present(const QVideoFrame& frame)
|
||||||
flip_horizontally = !flip_horizontally;
|
flip_horizontally = !flip_horizontally;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool flip_vertically = true; // It appears games expect this. Might be camera specific.
|
bool flip_vertically = false;
|
||||||
if (flip_setting == camera_flip::vertical || flip_setting == camera_flip::both)
|
if (flip_setting == camera_flip::vertical || flip_setting == camera_flip::both)
|
||||||
{
|
{
|
||||||
flip_vertically = !flip_vertically;
|
flip_vertically = !flip_vertically;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue