From 31ee8bf8bceb47652e3f94d0362cf85a3a309ce5 Mon Sep 17 00:00:00 2001 From: Jeffrey Bingham Date: Sat, 30 Sep 2017 13:17:48 -0700 Subject: [PATCH] Fix small typo in b3PluginArguments. --- examples/SharedMemory/SharedMemoryPublic.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/SharedMemory/SharedMemoryPublic.h b/examples/SharedMemory/SharedMemoryPublic.h index 28b7ec5b1..08fbea6be 100644 --- a/examples/SharedMemory/SharedMemoryPublic.h +++ b/examples/SharedMemory/SharedMemoryPublic.h @@ -633,9 +633,7 @@ struct b3PluginArguments int m_numInts; int m_ints[B3_MAX_PLUGIN_ARG_SIZE]; int m_numFloats; - int m_floats[B3_MAX_PLUGIN_ARG_SIZE]; - - + double m_floats[B3_MAX_PLUGIN_ARG_SIZE]; };