From 77ea4d40b8771b39504f7be24bdf51e3d4cce284 Mon Sep 17 00:00:00 2001 From: TakWolf Date: Mon, 20 Nov 2023 14:50:15 +0800 Subject: [PATCH] Fix strings spelling typo: Difussion -> Diffusion. Notice, this is not compatible for translations. --- data/strings/en.ini | 2 +- src/app/commands/cmd_change_pixel_format.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/strings/en.ini b/data/strings/en.ini index c814eec4d..8cf9b5693 100644 --- a/data/strings/en.ini +++ b/data/strings/en.ini @@ -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 diff --git a/src/app/commands/cmd_change_pixel_format.cpp b/src/app/commands/cmd_change_pixel_format.cpp index 28b67be34..73fb002a8 100644 --- a/src/app/commands/cmd_change_pixel_format.cpp +++ b/src/app/commands/cmd_change_pixel_format.cpp @@ -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;