From 533d51489db8e1e82bf0a1374d44ce2475b4af33 Mon Sep 17 00:00:00 2001 From: zaxcav Date: Tue, 4 Oct 2016 12:02:24 +0200 Subject: [PATCH] Fix typo 'uint' vs 'uint8'. --- src/peep/peep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/peep/peep.c b/src/peep/peep.c index 729a6e31ef..499f0fe5aa 100644 --- a/src/peep/peep.c +++ b/src/peep/peep.c @@ -8878,7 +8878,7 @@ static void peep_pathfind_heuristic_search(sint16 x, sint16 y, uint8 z, rct_map_ /* At this point the map element is found. */ - uint height = z; + uint8 height = z; if (map_element_get_type(mapElement) == MAP_ELEMENT_TYPE_PATH) { // Adjust height for goal comparison according to the path slope. if (footpath_element_is_sloped(mapElement)) {