diff options
| author | 2015-03-31 22:32:03 -0400 | |
|---|---|---|
| committer | 2015-03-31 22:32:03 -0400 | |
| commit | bd7798f94b25ad32bf8884b7f6f7478e020f314d (patch) | |
| tree | e46b6859d3c48dbc76eeb5af48ea344ec4b36fd5 /src/citra_qt/debugger/disassembler.cpp | |
| parent | Merge pull request #672 from purpasmart96/citra_moar_app_mem (diff) | |
| parent | disassembler: Get rid of a const_cast (diff) | |
| download | yuzu-bd7798f94b25ad32bf8884b7f6f7478e020f314d.tar.gz yuzu-bd7798f94b25ad32bf8884b7f6f7478e020f314d.tar.xz yuzu-bd7798f94b25ad32bf8884b7f6f7478e020f314d.zip | |
Merge pull request #679 from lioncash/const
disassembler: Get rid of a const_cast
Diffstat (limited to 'src/citra_qt/debugger/disassembler.cpp')
| -rw-r--r-- | src/citra_qt/debugger/disassembler.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/citra_qt/debugger/disassembler.cpp b/src/citra_qt/debugger/disassembler.cpp index 54d21dc90..f620687ae 100644 --- a/src/citra_qt/debugger/disassembler.cpp +++ b/src/citra_qt/debugger/disassembler.cpp | |||
| @@ -232,11 +232,8 @@ void DisassemblerWidget::OnDebugModeEntered() | |||
| 232 | { | 232 | { |
| 233 | ARMword next_instr = Core::g_app_core->GetPC(); | 233 | ARMword next_instr = Core::g_app_core->GetPC(); |
| 234 | 234 | ||
| 235 | // TODO: Make BreakPoints less crappy (i.e. const-correct) so that this doesn't need a const_cast. | 235 | if (model->GetBreakPoints().IsAddressBreakPoint(next_instr)) |
| 236 | if (const_cast<BreakPoints&>(model->GetBreakPoints()).IsAddressBreakPoint(next_instr)) | ||
| 237 | { | ||
| 238 | emu_thread.SetCpuRunning(false); | 236 | emu_thread.SetCpuRunning(false); |
| 239 | } | ||
| 240 | 237 | ||
| 241 | model->SetNextInstruction(next_instr); | 238 | model->SetNextInstruction(next_instr); |
| 242 | 239 | ||