diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-10-22 20:54:40 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-10-22 20:54:40 +0000 |
| commit | 39df6c56243117bad6b3746dc045b05a88ab070d (patch) | |
| tree | 37882583abebff815c2d2b75448ea52f6e49bd6e /Source/Core/DebuggerWX/Src/BreakpointView.cpp | |
| parent | 32820d2036749005229ccfb62a91608e3d4296af (diff) | |
Move out Cg shader generators to VideoCommon (hope to use this in the DX plugin in the future). Also move out stats code. Comment a lot and cleanup. Kill DX9 Globals.cpp.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@938 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/BreakpointView.cpp')
| -rw-r--r-- | Source/Core/DebuggerWX/Src/BreakpointView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/BreakpointView.cpp b/Source/Core/DebuggerWX/Src/BreakpointView.cpp index cde9a9519d..2f863af897 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointView.cpp +++ b/Source/Core/DebuggerWX/Src/BreakpointView.cpp @@ -115,7 +115,7 @@ void CBreakPointView::DeleteCurrentSelection() int Item = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
if (Item >= 0)
{
- u32 Address = GetItemData(Item);
+ u32 Address = (u32)GetItemData(Item);
CBreakPoints::DeleteElementByAddress(Address);
}
}
|
