From cb169fe27a62cc40cd7e25bce6115e57581a0a4a Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 18 Mar 2024 17:30:23 -0500 Subject: [PATCH] 17xx should be 10xx but waves are not mapped yet --- src/engine/fileOps/ftm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/fileOps/ftm.cpp b/src/engine/fileOps/ftm.cpp index dde258f98..cbac4741d 100644 --- a/src/engine/fileOps/ftm.cpp +++ b/src/engine/fileOps/ftm.cpp @@ -1766,7 +1766,7 @@ bool DivEngine::loadFTM(unsigned char* file, size_t len, bool dnft, bool dnft_si for (int v = 0; v < 8; v++) { if (map_channels[ch] == n163_chans[v]) { if (pat->data[row][4 + (j * 2)] == 0x12) { - pat->data[row][4 + (j * 2)] = 0x17; // local wave + pat->data[row][4 + (j * 2)] = 0x10; // TODO: map wave } } }