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

Method ramGotoPressed

gui/qt/memorywidget.cpp:118–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118void MainWindow::ramGotoPressed() {
119 bool accept = false;
120 QString addrStr = getAddressString(m_RamGotoAddr, &accept);
121
122 if (accept) {
123 m_RamGotoAddr = addrStr;
124 ui->ramEdit->setFocus();
125 ui->ramEdit->setOffset(hex2int(addrStr) - 0xD00000);
126 }
127}
128
129void MainWindow::memSearchEdit(HexWidget *edit) {
130 if (edit == Q_NULLPTR) {

Callers

nothing calls this directly

Calls 2

hex2intFunction · 0.85
setOffsetMethod · 0.80

Tested by

no test coverage detected