Fixes for MATLAB and C Examples, Updated Mac Binary

This commit is contained in:
Chris Teubert
2015-08-25 10:50:15 -07:00
parent 1ec7649569
commit 9187c82e56
7 changed files with 119 additions and 17 deletions

View File

@@ -42,7 +42,7 @@ void playbackSleep(int ms)
#ifdef WIN32
Sleep(ms);
#else
uSleep(ms * 1000);
usleep(ms * 1000);
#endif
}