소스 검색

Qt: we don't need to check if model is valid.

xdec 11 년 전
부모
커밋
e6162ed91e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/citra_qt/debugger/disassembler.cpp

+ 1 - 1
src/citra_qt/debugger/disassembler.cpp

@@ -220,7 +220,7 @@ void DisassemblerWidget::OnPause()
     emu_thread.SetCpuRunning(false);
 
     // TODO: By now, the CPU might not have actually stopped...
-    if (model && Core::g_app_core) {
+    if (Core::g_app_core) {
         model->SetNextInstruction(Core::g_app_core->GetPC());
     }
 }