From d7ddb3dfa842271843da1c0d05fabe6cb1e54bd1 Mon Sep 17 00:00:00 2001 From: Andy Grind Date: Mon, 21 Feb 2022 20:07:46 -0500 Subject: [PATCH] Fix right/down water currents drawing wrong tiles --- src/stage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stage.c b/src/stage.c index e9456fc6..f444aa38 100644 --- a/src/stage.c +++ b/src/stage.c @@ -391,11 +391,11 @@ void stage_update() { break; case 2: // Right from_ts = (uint8_t*) TS_WindH.tiles; - from_index = 13 - ((currentsTimer >> 1) & ~1); + from_index = 14 - ((currentsTimer >> 1) & ~1); break; case 3: // Down from_ts = (uint8_t*) TS_WindV.tiles; - from_index = 13 - ((currentsTimer >> 1) & ~1); + from_index = 14 - ((currentsTimer >> 1) & ~1); break; default: return; }