mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-24 05:13:08 +00:00
14 lines
300 B
C++
14 lines
300 B
C++
#include "wiimote.hpp"
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "../btdrv_mitm_logging.hpp"
|
|
|
|
namespace ams::controller {
|
|
|
|
Result WiimoteController::initialize(void) {
|
|
R_TRY(WiiController::initialize());
|
|
R_TRY(this->setReportMode(0x31));
|
|
return ams::ResultSuccess();
|
|
}
|
|
|
|
}
|