1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Fix water tool

This commit is contained in:
Marijn van der Werf
2016-04-27 18:57:06 +02:00
parent 8bdac36217
commit 1f8123451e

View File

@@ -1134,7 +1134,7 @@ void viewport_surface_paint_setup(uint8 direction, uint16 height, rct_map_elemen
regs.bl = (surfaceShape ^ 0xF) << 2;
regs.bh = regs.bl >> 4;
local_ebx = (regs.bl & 0xC) | (regs.bh & 0x3); // other way around?
local_ebx = (regs.bl & 0x3) | (regs.bh & 0xC); // other way around?
}
}
}