Fixed additional typos
Went through the source with VNNCC to correct as many found typos as possible Co-Authored-By: VNC <52937757+VNNCC@users.noreply.github.com>
This commit is contained in:
@@ -316,7 +316,7 @@ bool TextureTool::Convert(TextureData& dst, const TextureData& src, const PixelF
|
||||
}
|
||||
if (src.Format == dstFormat)
|
||||
{
|
||||
LOG(Warning, "Soure data and destination format are the same. Cannot perform conversion.");
|
||||
LOG(Warning, "Source data and destination format are the same. Cannot perform conversion.");
|
||||
return true;
|
||||
}
|
||||
if (src.Depth != 1)
|
||||
@@ -343,7 +343,7 @@ bool TextureTool::Resize(TextureData& dst, const TextureData& src, int32 dstWidt
|
||||
}
|
||||
if (src.Width == dstWidth && src.Height == dstHeight)
|
||||
{
|
||||
LOG(Warning, "Soure data and destination dimensions are the same. Cannot perform resizing.");
|
||||
LOG(Warning, "Source data and destination dimensions are the same. Cannot perform resizing.");
|
||||
return true;
|
||||
}
|
||||
if (src.Depth != 1)
|
||||
|
||||
Reference in New Issue
Block a user