oops, reversed?

This commit is contained in:
David Griswold 2024-08-27 12:37:02 -03:00 committed by OpenSauce04
parent 05e00d3a47
commit cf1ad67e81
2 changed files with 4 additions and 4 deletions

View File

@ -727,8 +727,8 @@ void RendererOpenGL::DrawTopScreen(const Layout::FramebufferLayout& layout,
return; return;
} }
int leftside, rightside; int leftside, rightside;
leftside = Settings::values.swap_eyes_3d.GetValue() ? 0 : 1; leftside = Settings::values.swap_eyes_3d.GetValue() ? 1 : 0;
rightside = Settings::values.swap_eyes_3d.GetValue() ? 1 : 0; rightside = Settings::values.swap_eyes_3d.GetValue() ? 0 : 1;
const float top_screen_left = static_cast<float>(top_screen.left); const float top_screen_left = static_cast<float>(top_screen.left);
const float top_screen_top = static_cast<float>(top_screen.top); const float top_screen_top = static_cast<float>(top_screen.top);

View File

@ -676,8 +676,8 @@ void RendererVulkan::DrawTopScreen(const Layout::FramebufferLayout& layout,
return; return;
} }
int leftside, rightside; int leftside, rightside;
leftside = Settings::values.swap_eyes_3d.GetValue() ? 0 : 1; leftside = Settings::values.swap_eyes_3d.GetValue() ? 1 : 0;
rightside = Settings::values.swap_eyes_3d.GetValue() ? 1 : 0; rightside = Settings::values.swap_eyes_3d.GetValue() ? 0 : 1;
const float top_screen_left = static_cast<float>(top_screen.left); const float top_screen_left = static_cast<float>(top_screen.left);
const float top_screen_top = static_cast<float>(top_screen.top); const float top_screen_top = static_cast<float>(top_screen.top);
const float top_screen_width = static_cast<float>(top_screen.GetWidth()); const float top_screen_width = static_cast<float>(top_screen.GetWidth());