From c70f50197ba9d505a3f24dc29843ec60e45588d2 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sat, 28 Aug 2021 13:28:46 +0200 Subject: [PATCH] Have the DS importer generate the correct loop mode --- src/sfizz/import/foreign_instruments/DecentSampler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/import/foreign_instruments/DecentSampler.cpp b/src/sfizz/import/foreign_instruments/DecentSampler.cpp index e20f3ab7..149ba86d 100644 --- a/src/sfizz/import/foreign_instruments/DecentSampler.cpp +++ b/src/sfizz/import/foreign_instruments/DecentSampler.cpp @@ -202,7 +202,7 @@ void DecentSamplerInstrumentImporter::emitRegionalOpcodes(std::ostream& os, pugi break; case hash("loopEnabled"): os << "loop_mode=" - << ((xmlOpcode.value == "true") ? "loop_continuous" : "one_shot") << "\n"; + << ((xmlOpcode.value == "true") ? "loop_continuous" : "no_loop") << "\n"; break; case hash("attack"): convertToReal("ampeg_attack");