Revision: 2404
          http://rigsofrods.svn.sourceforge.net/rigsofrods/?rev=2404&view=rev
Author:   ulteq
Date:     2012-01-31 02:51:47 +0000 (Tue, 31 Jan 2012)
Log Message:
-----------
-Codechange: Floating point 0 > 0.0

Modified Paths:
--------------
    trunk/source/main/audio/Sound.cpp

Modified: trunk/source/main/audio/Sound.cpp
===================================================================
--- trunk/source/main/audio/Sound.cpp   2012-01-31 02:50:18 UTC (rev 2403)
+++ trunk/source/main/audio/Sound.cpp   2012-01-31 02:51:47 UTC (rev 2404)
@@ -45,7 +45,7 @@
        // Disable sound?
        if (!enabled)
        {
-               audibility = 0;
+               audibility = 0.0;
                return;
        }
 
@@ -58,7 +58,7 @@
                        should_play = false;
        }
        
-       // should it play at all?
+       // Should it play at all?
        if (!should_play || gain == 0.0)
        {
                audibility = 0.0;

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


------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Rigsofrods-devel mailing list
Rigsofrods-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rigsofrods-devel

Reply via email to