From 315f12f1e44acf80a51ea475ee62c5c179bbcdd4 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 13 Jun 2022 17:19:02 +0100 Subject: [PATCH] Fix spelling error in comment --- src/newgrf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 453aa336f4..0f00c3d533 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -6251,7 +6251,7 @@ static bool TryMergeBoolMulCombineVarAction2Adjust(VarAction2OptimiseState &stat return false; } -/* Returns the number of adjusts to remove: 0: either, 1: current, 2: prev and current */ +/* Returns the number of adjusts to remove: 0: neither, 1: current, 2: prev and current */ static uint TryMergeVarAction2AdjustConstantOperations(DeterministicSpriteGroupAdjust &prev, DeterministicSpriteGroupAdjust ¤t) { if (prev.type != DSGA_TYPE_NONE || prev.variable != 0x1A || prev.shift_num != 0) return 0;