From 4dfcb32d85b77df1ee9902c7ff92e78f316dfe31 Mon Sep 17 00:00:00 2001 From: Philip Goto Date: Tue, 31 Oct 2017 19:39:14 +0100 Subject: [PATCH] Fix spelling errors in neighbour --- distribution/changelog.txt | 2 +- src/openrct2/config/Config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index d1f2a3bdd7..08e550d1dc 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -18,7 +18,7 @@ - Feature: [#6414] Raise maximum launch speed of the Corkscrew RC back to 96 km/h (for RCT1 parity). - Feature: [#6433] Turn 'unlock all prices' into a regular (non-cheat, persistent) option. - Feature: [#6530] Land rights tool no longer blocks when a tile is not for purchase. -- Feature: [#6568] Add smooth nearest neighbor scaling. +- Feature: [#6568] Add smooth nearest neighbour scaling. - Feature: Allow using object files from RCT Classic. - Feature: Title sequences now testable in-game. - Fix: [#816] In the map window, there are more peeps flickering than there are selected (original bug). diff --git a/src/openrct2/config/Config.cpp b/src/openrct2/config/Config.cpp index 9748c51a5f..6db32d749a 100644 --- a/src/openrct2/config/Config.cpp +++ b/src/openrct2/config/Config.cpp @@ -102,7 +102,7 @@ namespace Config static auto Enum_ScaleQuality = ConfigEnum( { - ConfigEnumEntry("NEAREST_NEIGHBOR", SCALE_QUALITY_NN), + ConfigEnumEntry("NEAREST_NEIGHBOUR", SCALE_QUALITY_NN), ConfigEnumEntry("LINEAR", SCALE_QUALITY_LINEAR), ConfigEnumEntry("ANISOTROPIC_FILTERING", SCALE_QUALITY_ANISOTROPIC), ConfigEnumEntry("SMOOTH_NEAREST_NEIGHBOUR", SCALE_QUALITY_SMOOTH_NN),