diff options
author | Kelly Washington <kelly@lindenlab.com> | 2007-06-21 22:40:22 +0000 |
---|---|---|
committer | Kelly Washington <kelly@lindenlab.com> | 2007-06-21 22:40:22 +0000 |
commit | e03bb0606a10f29c8b94909a713a5bb5c69e88b7 (patch) | |
tree | 6d8d07894579438c8cc70e08f5730c3c95dfe768 /indra/test/llmessageconfig_tut.cpp | |
parent | 2638f12f95eea692502836cf6548b4a0b234d009 (diff) |
merge -r62831:64079 branches/maintenance to release
Diffstat (limited to 'indra/test/llmessageconfig_tut.cpp')
-rw-r--r-- | indra/test/llmessageconfig_tut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/llmessageconfig_tut.cpp b/indra/test/llmessageconfig_tut.cpp index c9a62e5230..f7eede73a3 100644 --- a/indra/test/llmessageconfig_tut.cpp +++ b/indra/test/llmessageconfig_tut.cpp @@ -19,7 +19,7 @@ namespace tut { ///var/tmp/babbage/dev/message-liberation/etc static const char file_name[] = "/tmp/message.xml"; - static const F32 refreshRate = 6.0*1000.0; // milliseconds + static const long refreshRateMillis = 6000; struct LLMessageConfigTestData { @@ -45,7 +45,7 @@ namespace tut LLSDSerialize::toPrettyXML(config, file); } file.close(); - ms_sleep(refreshRate); + ms_sleep(refreshRateMillis); LLFrameTimer::updateFrameTime(); } }; |