From 680c33d30f0b00d49d43129920bd6a8e8920e54f Mon Sep 17 00:00:00 2001 From: Ted John Date: Mon, 16 May 2016 20:32:45 +0100 Subject: [PATCH] do scrolling text RCT2 hack for walls too --- src/paint/map_element/fence.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/paint/map_element/fence.c b/src/paint/map_element/fence.c index 41ed39aa9b..9944bb1f47 100644 --- a/src/paint/map_element/fence.c +++ b/src/paint/map_element/fence.c @@ -18,6 +18,10 @@ #include "../../addresses.h" #include "../../world/map.h" +extern bool TempForScrollText; + void fence_paint(uint8 direction, int height, rct_map_element* mapElement) { + TempForScrollText = true; RCT2_CALLPROC_X(0x6E44B0, 0, 0, direction, height, (int)mapElement, 0, 0); + TempForScrollText = false; }