aboutsummaryrefslogtreecommitdiff
path: root/include/libsurvive/poser.h
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-12 18:09:07 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-12 18:09:07 -0600
commit25e2a51446f63883dc1620e25559bd2e2b528df2 (patch)
tree18e435b000f9a8048be7cc847c0db532a298e86c /include/libsurvive/poser.h
parente456a3ec1b0e1f04d55cdad7d95898f20bd26c89 (diff)
downloadlibsurvive-25e2a51446f63883dc1620e25559bd2e2b528df2.tar.gz
libsurvive-25e2a51446f63883dc1620e25559bd2e2b528df2.tar.bz2
Cleaned up cast warning
Diffstat (limited to 'include/libsurvive/poser.h')
-rw-r--r--include/libsurvive/poser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libsurvive/poser.h b/include/libsurvive/poser.h
index 57a8599..eb0de3b 100644
--- a/include/libsurvive/poser.h
+++ b/include/libsurvive/poser.h
@@ -17,7 +17,7 @@ typedef enum PoserType_t
POSERDATA_DISASSOCIATE, //If you get this, it doesn't contain data. It just tells you to please disassociate from the current SurviveObject and delete your poserdata.
} PoserType;
-typedef void (*poser_raw_pose_func)(SurviveObject *so, uint8_t lighthouse, FLT *pose, void *user);
+typedef void (*poser_raw_pose_func)(SurviveObject *so, uint8_t lighthouse, SurvivePose *pose, void *user);
typedef void (*poser_lighthouse_pose_func)(SurviveObject *so, uint8_t lighthouse, SurvivePose *pose, void *user);
typedef struct
@@ -28,7 +28,7 @@ typedef struct
void *userdata;
} PoserData;
-void PoserData_poser_raw_pose_func(PoserData *poser_data, SurviveObject *so, uint8_t lighthouse, FLT *pose);
+void PoserData_poser_raw_pose_func(PoserData *poser_data, SurviveObject *so, uint8_t lighthouse, SurvivePose *pose);
void PoserData_lighthouse_pose_func(PoserData *poser_data, SurviveObject *so, uint8_t lighthouse, SurvivePose *pose);
typedef struct