Fix typo in the initial check of Image::scaleImage().

This commit is contained in:
Alberto Luaces 2018-09-05 13:27:35 +02:00
parent 6ae1139630
commit 69667a478f

View File

@ -1518,7 +1518,7 @@ void Image::swap(osg::Image& rhs)
void Image::scaleImage(int s,int t,int r, GLenum newDataType)
{
if (_s==s && _t==t && _r==r && _dataType==_dataType) return;
if (_s==s && _t==t && _r==r && _dataType==newDataType) return;
if (_data==NULL)
{