mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
ControllerInterface: Implement dummy UpdateInput / UpdateOutputs
Make the implementation here a bit easier.
This commit is contained in:
parent
0c056c6411
commit
367a42dcfd
10 changed files with 3 additions and 32 deletions
|
@ -286,11 +286,6 @@ bool KeyboardMouse::UpdateInput()
|
|||
return true;
|
||||
}
|
||||
|
||||
bool KeyboardMouse::UpdateOutput()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string KeyboardMouse::GetName() const
|
||||
{
|
||||
// This is the name string we got from the X server for this master
|
||||
|
|
|
@ -99,7 +99,6 @@ private:
|
|||
|
||||
public:
|
||||
bool UpdateInput() override;
|
||||
bool UpdateOutput() override;
|
||||
|
||||
KeyboardMouse(Window window, int opcode, int pointer_deviceid, int keyboard_deviceid);
|
||||
~KeyboardMouse();
|
||||
|
|
|
@ -68,12 +68,6 @@ bool KeyboardMouse::UpdateInput()
|
|||
return true;
|
||||
}
|
||||
|
||||
bool KeyboardMouse::UpdateOutput()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
std::string KeyboardMouse::GetName() const
|
||||
{
|
||||
return "Keyboard Mouse";
|
||||
|
|
|
@ -71,7 +71,6 @@ private:
|
|||
|
||||
public:
|
||||
bool UpdateInput() override;
|
||||
bool UpdateOutput() override;
|
||||
|
||||
KeyboardMouse(Window window);
|
||||
~KeyboardMouse();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue