summaryrefslogtreecommitdiffhomepage
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/plugin-api.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-api.hpp b/api/plugin-api.hpp
index 892f3500..e49530d2 100644
--- a/api/plugin-api.hpp
+++ b/api/plugin-api.hpp
@@ -160,7 +160,7 @@ struct OTR_API_EXPORT IProtocol : module_status_mixin
// called 250 times a second with XYZ yaw pitch roll pose
// try not to perform intense computation here. use a thread.
- virtual void pose(const double* headpose) = 0;
+ virtual void pose(const double* pose, const double* raw) = 0;
// return game name or placeholder text
virtual QString game_name() = 0;
};