From 98a88a9199532a75a3ddd3d2a5824a51e29944ac Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 21 Nov 2022 04:07:21 -0500 Subject: [PATCH] add helper ins end marker when saving to .fur --- src/engine/instrument.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engine/instrument.cpp b/src/engine/instrument.cpp index 1c2ddbf0a..6a7bb5fae 100644 --- a/src/engine/instrument.cpp +++ b/src/engine/instrument.cpp @@ -1140,6 +1140,10 @@ void DivInstrument::putInsData2(SafeWriter* w, bool fui, const DivSong* song) { } } + if (!fui) { + w->write("EN",2); + } + blockEndSeek=w->tell(); if (!fui) { w->seek(blockStartSeek,SEEK_SET);