This commit is contained in:
tildearrow 2022-04-10 15:31:32 -05:00
parent 5d4f297b45
commit c13358d96f
2 changed files with 2 additions and 9 deletions

View file

@ -42,8 +42,8 @@
#define BUSY_BEGIN_SOFT softLocked=true; isBusy.lock(); #define BUSY_BEGIN_SOFT softLocked=true; isBusy.lock();
#define BUSY_END isBusy.unlock(); softLocked=false; #define BUSY_END isBusy.unlock(); softLocked=false;
#define DIV_VERSION "dev80" #define DIV_VERSION "dev81"
#define DIV_ENGINE_VERSION (80/*Test*/|0x80) #define DIV_ENGINE_VERSION 81
// for imports // for imports
#define DIV_VERSION_MOD 0xff01 #define DIV_VERSION_MOD 0xff01

View file

@ -417,13 +417,6 @@ struct DivInstrument {
*/ */
void putInsData(SafeWriter* w); void putInsData(SafeWriter* w);
/**
* save the macro to a SafeWriter.
* @param m the macro.
* @param w the SafeWriter in question.
*/
void putMacroData(DivInstrumentMacro m, SafeWriter* w);
/** /**
* read instrument data in .fui format. * read instrument data in .fui format.
* @param reader the reader. * @param reader the reader.