summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterView.cpp
AgeCommit message (Collapse)Author
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-05-23DolphinWX: Add missing breaks to a switch in RegisterViewLioncash
Technically the fallthrough would never happen, as the row numbers correspond to the grid view (which will always be zero or greater). However, it gets rid of compiler warnings on higher warning levels.
2015-05-08DolphinWX: Remove unnecessary includesLioncash
2015-04-15Debugger: Update the registers/watches before refreshing grids.Lioncash
2015-04-07Debugger: Fix memory leaks related to grid tablesLioncash
Incrementing the reference count here isn't necessary, as they construct with a count of 1. Incrementing again results in the attributes not being freed.
2015-03-24DolphinWX: Get rid of wxGrid-based casts in the debugger.Lioncash
This technically also fixes a memory leak in WatchView.cpp, because the table setting was done such that the grid wouldn't take ownership of the table, which means said table wouldn't be deleted in the grid's destructor.
2014-11-11DolphinWX: Eliminate some memory leaksLioncash
Since the menus aren't actually assigned a parent, they would not be freed by wx. Plus, these should have initially been constructed on the stack in the first place. Technically any time someone right-clicked the game list they would be leaking memory.
2014-11-07DolphinWX: Remove unnecessary forward declarationsLioncash
2014-11-05DolphinWX: Eliminate most usages of event tables in the debugger.Lioncash
Moves things over to Bind.
2014-10-26Added a "Delete watch" context menu to the Watch window.skidau
Added a "View memory" command to the context menu.
2014-10-26Added "Add to watch" context menu items to the Memory and Register windows.skidau
Added "View memory" context menu item to the Register window.
2014-10-16Merge pull request #1062 from zhuowei/masterskidau
Parse input as hex instead of decimal to match display values in the register view
2014-10-12Added some of the MMU registers into the debugger Register windowskidau
2014-09-12Parse input as hex instead of decimal to match display values in the ↵Zhuowei Zhang
debugger's register view
2014-08-04Common: Introduce the new Gekko disassembler to Common.Lioncash
This moves the Gekko disassembler to Common where it should be. Having it in the Bochs disassembly Externals is incorrect. Unlike the PowerPC disassembler prior however, this one is updated to have an API that is more fitting for C++. e.g. Not needing to specify a string buffer and size. It does all of this under the hood. This modifies all the DebuggingInterfaces as necessary to handle this.
2014-05-17Kill off _T and wxT macrosLioncash
Minor other alterations that relate to above as well. Also added the PanicAlertT version of alerts for some error messages that use PanicAlert. We want the user to actually understand why the error occurred.
2014-02-23Make DolphinWX/ mostly IWYU clean.Pierre Bourdon
2014-02-18Convert all includes to relative paths.Lioncash
2014-02-17Second and final pass of clearing out tabs.Lioncash
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre