Fix strings spelling typo: Difussion -> Diffusion. Notice, this is not compatible for translations.

This commit is contained in:
TakWolf 2023-11-20 14:50:15 +08:00 committed by David Capello
parent cbe14089af
commit 77ea4d40b8
2 changed files with 2 additions and 2 deletions

View File

@ -374,7 +374,7 @@ ChangePixelFormat_Grayscale = Grayscale
ChangePixelFormat_Indexed = Indexed
ChangePixelFormat_Indexed_OrderedDithering = Indexed with Ordered Dithering
ChangePixelFormat_Indexed_OldDithering = Indexed with Old Dithering
ChangePixelFormat_Indexed_ErrorDifussion = Indexed with Floyd-Steinberg Error Diffusion Dithering
ChangePixelFormat_Indexed_ErrorDiffusion = Indexed with Floyd-Steinberg Error Diffusion Dithering
ChangePixelFormat_MoreOptions = More Options
Clear = Clear
ClearCel = Clear Cel

View File

@ -710,7 +710,7 @@ std::string ChangePixelFormatCommand::onGetFriendlyName() const
conversion = Strings::commands_ChangePixelFormat_Indexed_OldDithering();
break;
case render::DitheringAlgorithm::ErrorDiffusion:
conversion = Strings::commands_ChangePixelFormat_Indexed_ErrorDifussion();
conversion = Strings::commands_ChangePixelFormat_Indexed_ErrorDiffusion();
break;
}
break;