1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

draw rain via new IRainDrawer interface

This commit is contained in:
Ted John
2016-06-03 23:06:22 +01:00
parent d4edf58a51
commit 3e6eb48d4c
11 changed files with 402 additions and 329 deletions

View File

@@ -42,7 +42,7 @@ void screenshot_check()
if (RCT2_GLOBAL(RCT2_ADDRESS_SCREENSHOT_COUNTDOWN, uint8) != 0) {
RCT2_GLOBAL(RCT2_ADDRESS_SCREENSHOT_COUNTDOWN, uint8)--;
if (RCT2_GLOBAL(RCT2_ADDRESS_SCREENSHOT_COUNTDOWN, uint8) == 0) {
update_rain_animation();
// update_rain_animation();
screenshotIndex = screenshot_dump();
if (screenshotIndex != -1) {
@@ -55,7 +55,7 @@ void screenshot_check()
}
RCT2_GLOBAL(0x009A8C29, uint8) &= ~1;
redraw_rain();
// redraw_rain();
}
}
}