Fix IODummy FindWiimote method.

This commit is contained in:
Matthew Parlane 2013-05-18 20:35:37 +12:00
parent 19252f4e0e
commit fccf377180
1 changed files with 3 additions and 2 deletions

View File

@ -32,9 +32,10 @@ WiimoteScanner::~WiimoteScanner()
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