Explorar o código

citra-qt: Fix invalid memory read upon program startup.

This was caused by the framebuffer display widget not checking whether we are actually in a valid emulation state or not.
Tony Wasserka %!s(int64=11) %!d(string=hai) anos
pai
achega
782592e6d3
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/citra_qt/debugger/graphics_framebuffer.cpp

+ 2 - 1
src/citra_qt/debugger/graphics_framebuffer.cpp

@@ -125,7 +125,8 @@ GraphicsFramebufferWidget::GraphicsFramebufferWidget(std::shared_ptr<Pica::Debug
     setWidget(main_widget);
 
     // Load current data - TODO: Make sure this works when emulation is not running
-    emit Update();
+    if (debug_context && debug_context->at_breakpoint)
+        emit Update();
     widget()->setEnabled(false); // TODO: Only enable if currently at breakpoint
 }