From 81cbb1611f72a0b338aac54f43e020555f5a28f0 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 5 Dec 2022 23:46:17 +0100 Subject: [PATCH] fixed bug with not marking tape as changed after adding action or delay --- src/tape.c | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.34.1