Discussion:
[Crossfire-cvs] SF.net SVN: crossfire:[19701] client/trunk/gtk-v2/src/main.c
Crossfire CVS repository messages.
2014-10-15 01:28:43 UTC
Permalink
Revision: 19701
http://sourceforge.net/p/crossfire/code/19701
Author: partmedia
Date: 2014-10-15 01:28:42 +0000 (Wed, 15 Oct 2014)
Log Message:
-----------
Send beats only when client is in playing state

Modified Paths:
--------------
client/trunk/gtk-v2/src/main.c

Modified: client/trunk/gtk-v2/src/main.c
===================================================================
--- client/trunk/gtk-v2/src/main.c 2014-10-14 05:37:07 UTC (rev 19700)
+++ client/trunk/gtk-v2/src/main.c 2014-10-15 01:28:42 UTC (rev 19701)
@@ -126,7 +126,9 @@
mapdata_animation();
}

- beat_check();
+ if (cpl.input_state == Playing) {
+ beat_check();
+ }
return TRUE;
}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Loading...