mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
apply the new wxw method to dsp hle, wiimote, and padsimple.
wiimote config now loads way faster :) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3649 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
12efada734
commit
99a33ccba9
24 changed files with 618 additions and 689 deletions
|
@ -42,7 +42,7 @@
|
|||
|
||||
|
||||
// Make the wxTextCtrls scroll with each other
|
||||
void CDebugger::DoScrollBlocks()
|
||||
void DSPDebuggerHLE::DoScrollBlocks()
|
||||
{
|
||||
// ShowPosition = in letters
|
||||
// GetScrollPos = number of lines from the top
|
||||
|
@ -75,13 +75,13 @@ void CDebugger::DoScrollBlocks()
|
|||
}*/
|
||||
}
|
||||
|
||||
void CDebugger::ScrollBlocksMouse(wxMouseEvent& event)
|
||||
void DSPDebuggerHLE::ScrollBlocksMouse(wxMouseEvent& event)
|
||||
{
|
||||
DoScrollBlocks();
|
||||
event.Skip(); // otherwise we remove the regular behavior, for example scrolling
|
||||
}
|
||||
|
||||
void CDebugger::ScrollBlocksCursor(wxScrollWinEvent& event)
|
||||
void DSPDebuggerHLE::ScrollBlocksCursor(wxScrollWinEvent& event)
|
||||
{
|
||||
DoScrollBlocks();
|
||||
event.Skip(); // otherwise we remove the regular behavior, for example scrolling
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue