gsdx: use a type in sizeof

(warning) Suspicious usage of 'sizeof' with a numeric constant as parameter.
This commit is contained in:
Gregory Hainaut 2015-11-06 22:29:06 +01:00
parent e4e68a6179
commit 9f1649ae57
1 changed files with 1 additions and 1 deletions

View File

@ -1854,7 +1854,7 @@ void GSLocalMemory::ReadTexture(const GSOffset* RESTRICT off, const GSVector4i&
if(!cr.rempty())
{
(this->*rtx)(off, cr, dst + (cr.left - r.left) * sizeof(32), dstpitch, TEXA);
(this->*rtx)(off, cr, dst + (cr.left - r.left) * sizeof(uint32), dstpitch, TEXA);
}
}
}