mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Fix IODummy FindWiimote method.
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user