Skip to content

Commit

Permalink
Merge pull request #1 from joemarshall/master
Browse files Browse the repository at this point in the history
Support new IVRDriverInput_002 interface
  • Loading branch information
TheLastRar authored Jan 21, 2019
2 parents de7e1ec + 8108b4d commit 4722cce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions driver_vrinputemulator/src/hooks/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ std::shared_ptr<InterfaceHooks> InterfaceHooks::hookInterface(void* interfaceRef
retval = IVRServerDriverHost005Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRDriverInput_001") == 0) {
retval = IVRDriverInput001Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRDriverInput_002") == 0) {
retval = IVRDriverInput001Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("ITrackedDeviceServerDriver_005") == 0) {
retval = ITrackedDeviceServerDriver005Hooks::createHooks(interfaceRef);
} else if (interfaceVersion.compare("IVRControllerComponent_001") == 0) {
Expand Down

0 comments on commit 4722cce

Please sign in to comment.