gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. 8bb73f65e8d85f6d640f


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 8bb73f65e8d85f6d640f74e256d646c66fbd6a13
Date: Wed, 20 Oct 2010 10:24:52 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  8bb73f65e8d85f6d640f74e256d646c66fbd6a13 (commit)
       via  85763463715dd58264edf97ce2c1cdc5c62eb3f7 (commit)
      from  51de3a02379b49911aa7df2015b0f3ae18739e46 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=8bb73f65e8d85f6d640f74e256d646c66fbd6a13


commit 8bb73f65e8d85f6d640f74e256d646c66fbd6a13
Merge: 8576346 51de3a0
Author: Sandro Santilli <address@hidden>
Date:   Wed Oct 20 12:24:47 2010 +0200

    Merge branch 'master' of ssh://address@hidden/srv/git/gnash


http://git.savannah.gnu.org/cgit//commit/?id=85763463715dd58264edf97ce2c1cdc5c62eb3f7


commit 85763463715dd58264edf97ce2c1cdc5c62eb3f7
Author: Sandro Santilli <address@hidden>
Date:   Wed Oct 20 12:24:21 2010 +0200

    Pass microseconds, not milliseconds, to gnashSleep

diff --git a/gui/dump.cpp b/gui/dump.cpp
index 4311635..5b0e1a8 100644
--- a/gui/dump.cpp
+++ b/gui/dump.cpp
@@ -153,7 +153,9 @@ bool
 DumpGui::run()
 {
 
-    log_debug("DumpGui entering main loop with interval of %d", _interval);
+    log_debug("DumpGui entering main loop with interval of %d ms", _interval);
+
+    size_t usecs_interval = _interval*1000;
 
     WallClockTimer timer;
 
@@ -167,7 +169,7 @@ DumpGui::run()
             writeFrame();
         }
   
-        gnashSleep(_interval);
+        gnashSleep(usecs_interval);
 
         // check if we've reached a timeout
         if (_timeout && timer.elapsed() > _timeout ) {

-----------------------------------------------------------------------

Summary of changes:
 gui/dump.cpp |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]