fix formatting

This commit is contained in:
SachinVin 2020-06-21 17:53:31 +05:30 committed by bunnei
parent 428b0910ef
commit d5e765fa53

View File

@ -184,12 +184,12 @@ std::unique_ptr<Input::MotionDevice> NDKMotionFactory::Create(const Common::Para
}
void NDKMotionFactory::EnableSensors() {
if(ndk_motion_device)
if (ndk_motion_device)
ndk_motion_device->EnableSensors();
}
void NDKMotionFactory::DisableSensors() {
if(ndk_motion_device)
if (ndk_motion_device)
ndk_motion_device->DisableSensors();
}