Previous 199869 Revisions Next

r35180 Saturday 21st February, 2015 at 14:19:10 UTC by Vasantha Crabb
Use uppercase ID in break/watchpoints windows to match how it's printed on the console; notify disassembly views on changing breakpoints to prevent Qt debugger menus becoming stale
[src/emu/debug]dvbpoints.c dvwpoints.c

trunk/src/emu/debug/dvbpoints.c
r243691r243692
125125         bpList[bpIndex]->setEnabled(true);
126126
127127      delete[] bpList;
128
129      machine().debug_view().update_all(DVT_DISASSEMBLY);
128130   }
129131
130132   begin_update();
r243691r243692
376378         device_debug::breakpoint* bp = bpList[bpi];
377379
378380         astring buffer;
379         buffer.printf("%x", bp->index());
381         buffer.printf("%X", bp->index());
380382         pad_astring_to_length(buffer, tableBreaks[0]);
381383         buffer.catprintf("%c", bp->enabled() ? 'X' : 'O');
382384         pad_astring_to_length(buffer, tableBreaks[1]);
trunk/src/emu/debug/dvwpoints.c
r243691r243692
441441         device_debug::watchpoint* wp = wpList[wpi];
442442
443443         astring buffer;
444         buffer.printf("%x", wp->index());
444         buffer.printf("%X", wp->index());
445445         pad_astring_to_length(buffer, tableBreaks[0]);
446446         buffer.catprintf("%c", wp->enabled() ? 'X' : 'O');
447447         pad_astring_to_length(buffer, tableBreaks[1]);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team