mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
cellCamera: don't flip qt image vertically by default
This commit is contained in:
parent
354db953e6
commit
9dc6d920ce
|
|
@ -116,7 +116,7 @@ bool qt_camera_video_surface::present(const QVideoFrame& frame)
|
|||
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)
|
||||
{
|
||||
flip_vertically = !flip_vertically;
|
||||
|
|
|
|||
Loading…
Reference in a new issue