do scrolling text RCT2 hack for walls too

This commit is contained in:
Ted John 2016-05-16 20:32:45 +01:00
parent eb19ca8626
commit 680c33d30f
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}