From: Holger Schemel Date: Mon, 5 Dec 2022 22:46:17 +0000 (+0100) Subject: fixed bug with not marking tape as changed after adding action or delay X-Git-Tag: 4.3.3.0~2 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=81cbb1611f72a0b338aac54f43e020555f5a28f0 fixed bug with not marking tape as changed after adding action or delay --- diff --git a/src/tape.c b/src/tape.c index 4ec51529..fb00fcd5 100644 --- a/src/tape.c +++ b/src/tape.c @@ -834,6 +834,8 @@ boolean TapeAddAction(byte action[MAX_TAPE_ACTIONS]) tape.pos[tape.counter].delay++; } + tape.changed = TRUE; + return TRUE; }