mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Fix IODummy FindWiimote method.
This commit is contained in:
parent
19252f4e0e
commit
fccf377180
@ -32,9 +32,10 @@ WiimoteScanner::~WiimoteScanner()
|
|||||||
void WiimoteScanner::Update()
|
void WiimoteScanner::Update()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
std::vector<Wiimote*> WiimoteScanner::FindWiimotes()
|
void WiimoteScanner::FindWiimotes(std::vector<Wiimote*> & found_wiimotes, Wiimote* & found_board)
|
||||||
{
|
{
|
||||||
return std::vector<Wiimote*>();
|
found_wiimotes.clear();
|
||||||
|
found_board = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WiimoteScanner::IsReady() const
|
bool WiimoteScanner::IsReady() const
|
||||||
|
Loading…
Reference in New Issue
Block a user