From 9c4face1aee0b8dc1972249e2325fc2c74ae43ad Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 17 Oct 2013 20:05:34 +0100 Subject: [PATCH] Fix float-int conversion bug caught by Clang --- simgear/sound/openal_test2.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simgear/sound/openal_test2.cxx b/simgear/sound/openal_test2.cxx index be56118d..43bd464d 100644 --- a/simgear/sound/openal_test2.cxx +++ b/simgear/sound/openal_test2.cxx @@ -8,6 +8,7 @@ #include #include +#include #include "soundmgr_openal.hxx" #include "sample_group.hxx" @@ -90,7 +91,7 @@ int main( int argc, char *argv[] ) { sgr->stop("sound1"); sgr->stop("sound2"); sgr->stop("sound3"); - sleep(0.5); + SGTimeStamp::sleepForMSec(500); smgr->update(0.5); sgr->stop("sound4"); sgr->stop("sound5"); -- 2.39.5