mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 06:25:43 +01:00
Fix small bug with large consequences
This commit is contained in:
parent
dcc12eb28a
commit
fe69dc9fb5
@ -79,12 +79,12 @@ namespace FasTC {
|
|||||||
return numIterations;
|
return numIterations;
|
||||||
}
|
}
|
||||||
|
|
||||||
VectorBase<T, N> b;
|
|
||||||
for(int i = 0; i < (N>>1); i++)
|
for(int i = 0; i < (N>>1); i++)
|
||||||
b[i] = 1;
|
b[i] = 1;
|
||||||
|
|
||||||
b.Normalize();
|
b.Normalize();
|
||||||
badEigenValue = true;
|
badEigenValue = true;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Normalize
|
// Normalize
|
||||||
|
Loading…
Reference in New Issue
Block a user