Fix bug in testsuite.

This commit is contained in:
castano 2008-11-21 07:45:09 +00:00
parent 1813624992
commit 7486201a7e

View File

@ -156,7 +156,7 @@ float rmsError(const Image * a, const Image * b)
float mse = 0; float mse = 0;
const uint count = a->width() * b->width(); const uint count = a->width() * a->height();
for (uint i = 0; i < count; i++) for (uint i = 0; i < count; i++)
{ {