MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / setDebugDisasmAddrCol

Method setDebugDisasmAddrCol

gui/qt/settings.cpp:321–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319}
320
321void MainWindow::setDebugDisasmAddrCol(bool state) {
322 ui->checkDisasmAddr->setChecked(state);
323 m_config->setValue(SETTING_DEBUGGER_ADDR_COL, state);
324 disasm.addr = state;
325 if (guiDebug) {
326 if (!disasm.addr) {
327 disasmUpdate();
328 } else {
329 disasmUpdateAddr(cpu.registers.PC, true);
330 }
331 }
332}
333
334void MainWindow::setDebugDisasmImplict(bool state) {
335 ui->checkDisasmImplict->setChecked(state);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected