Fix spelling errors in neighbour

This commit is contained in:
Philip Goto 2017-10-31 19:39:14 +01:00 committed by Michał Janiszewski
parent 36bece4cf1
commit 4dfcb32d85
2 changed files with 2 additions and 2 deletions

View File

@ -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).

View File

@ -102,7 +102,7 @@ namespace Config
static auto Enum_ScaleQuality = ConfigEnum<sint32>(
{
ConfigEnumEntry<sint32>("NEAREST_NEIGHBOR", SCALE_QUALITY_NN),
ConfigEnumEntry<sint32>("NEAREST_NEIGHBOUR", SCALE_QUALITY_NN),
ConfigEnumEntry<sint32>("LINEAR", SCALE_QUALITY_LINEAR),
ConfigEnumEntry<sint32>("ANISOTROPIC_FILTERING", SCALE_QUALITY_ANISOTROPIC),
ConfigEnumEntry<sint32>("SMOOTH_NEAREST_NEIGHBOUR", SCALE_QUALITY_SMOOTH_NN),