|
From: <axl...@us...> - 2010-04-28 02:26:38
|
Revision: 708
http://hgengine.svn.sourceforge.net/hgengine/?rev=708&view=rev
Author: axlecrusher
Date: 2010-04-28 02:26:32 +0000 (Wed, 28 Apr 2010)
Log Message:
-----------
fix bug
Modified Paths:
--------------
Mercury2/src/MercuryMath.cpp
Modified: Mercury2/src/MercuryMath.cpp
===================================================================
--- Mercury2/src/MercuryMath.cpp 2010-04-28 02:05:26 UTC (rev 707)
+++ Mercury2/src/MercuryMath.cpp 2010-04-28 02:26:32 UTC (rev 708)
@@ -276,7 +276,7 @@
c = _mm_shuffle_ps(r2, r2, 0xc9);
d = _mm_shuffle_ps(r1, r1, 0xd2);
a = _mm_mul_ps( c, d );
- a = _mm_sub_ps(r,a);
+ r = _mm_sub_ps(r,a);
result = r;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|