From 22629c3ef5df44403296b2b656ec59b00dbf6bc9 Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Fri, 25 Sep 2015 18:54:28 -0500 Subject: [PATCH] Use a slightly better flag name for drawing all framebuffers --- src/xenia/gpu/gl4/command_processor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/gpu/gl4/command_processor.cc b/src/xenia/gpu/gl4/command_processor.cc index 334068da3..7bc8b752d 100644 --- a/src/xenia/gpu/gl4/command_processor.cc +++ b/src/xenia/gpu/gl4/command_processor.cc @@ -24,7 +24,7 @@ #include "third_party/xxhash/xxhash.h" -DEFINE_bool(render_all_targets, false, +DEFINE_bool(draw_all_framebuffers, false, "Copy all render targets to screen on swap"); namespace xe { @@ -644,7 +644,7 @@ void CommandProcessor::IssueSwap(uint32_t frontbuffer_ptr, swap_state_.back_buffer_texture, dest_rect, GL_LINEAR); - if (FLAGS_render_all_targets) { + if (FLAGS_draw_all_framebuffers) { int32_t offsetx = (1280 - (1280 / 5)); int32_t offsety = 0; int32_t doffsetx = 0;