From ae6b9f6e9c6ff71b1e2256bc3e9526815746ce2e Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 30 Aug 2021 18:40:24 +0100 Subject: [PATCH] Fix ESRB_REVERSE not being include in YAPF ESRB dumper --- src/pathfinder/yapf/yapf_type.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pathfinder/yapf/yapf_type.hpp b/src/pathfinder/yapf/yapf_type.hpp index 24aa28cc91..51bb0e1da6 100644 --- a/src/pathfinder/yapf/yapf_type.hpp +++ b/src/pathfinder/yapf/yapf_type.hpp @@ -79,7 +79,8 @@ inline std::string ValueStr(EndSegmentReasonBits bits) static const char * const end_segment_reason_names[] = { "DEAD_END", "RAIL_TYPE", "INFINITE_LOOP", "SEGMENT_TOO_LONG", "CHOICE_FOLLOWS", "DEPOT", "WAYPOINT", "STATION", "SAFE_TILE", - "PATH_TOO_LONG", "FIRST_TWO_WAY_RED", "LOOK_AHEAD_END", "TARGET_REACHED" + "PATH_TOO_LONG", "FIRST_TWO_WAY_RED", "LOOK_AHEAD_END", "TARGET_REACHED", + "REVERSE" }; std::stringstream ss;