gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r9885: drop annoying error message a


From: Sandro Santilli
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r9885: drop annoying error message about matrix not being invertible, the code is correct and tested in matrix_test.swf
Date: Tue, 30 Sep 2008 18:17:43 -0400
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9885
committer: Sandro Santilli <address@hidden>
branch nick: gnash-head
timestamp: Tue 2008-09-30 18:17:43 -0400
message:
  drop annoying error message about matrix not being invertible, the code is 
correct and tested in matrix_test.swf
modified:
  libcore/matrix.cpp
=== modified file 'libcore/matrix.cpp'
--- a/libcore/matrix.cpp        2008-09-30 14:46:27 +0000
+++ b/libcore/matrix.cpp        2008-09-30 22:17:43 +0000
@@ -304,8 +304,8 @@
     boost::int64_t det = determinant();
     if(det == 0)
     {
-        log_error("Matrix not invertible, setting to identity on invert 
request");
-        // TODO: check this.
+        //log_debug("Matrix not invertible, setting to identity on invert 
request");
+        // tested in misc-ming.all/matrix_test.c (seek "matrix inversion")
         set_identity();
     }
     else


reply via email to

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