mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 05:44:06 +00:00
Apparently rand() returns zero too. Avoid that.
This commit is contained in:
parent
42e75a5e4c
commit
1aa62003b9
1 changed files with 2 additions and 3 deletions
|
@ -504,8 +504,7 @@ static uint32 PowerIteration(const RGBAMatrix &mat, RGBADir &eigVec, double &eig
|
|||
for(int nTries = 0; nTries < 3; nTries++) {
|
||||
// !SPEED! Find eigenvectors by using the power method. This is good because the
|
||||
// matrix is only 4x4, which allows us to use SIMD...
|
||||
RGBAVector b = RGBAVector(float(rand()));
|
||||
assert(b.Length() > 0);
|
||||
RGBAVector b = RGBAVector(float(rand()) + 1.0f);
|
||||
b /= b.Length();
|
||||
|
||||
bool fixed = false;
|
||||
|
|
Loading…
Reference in a new issue