summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/factories/naudio/v1/SampleFactory.h3
-rw-r--r--src/factories/naudio/v1/SoundFontFactory.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/factories/naudio/v1/SampleFactory.h b/src/factories/naudio/v1/SampleFactory.h
index eb7cff5..586fd80 100644
--- a/src/factories/naudio/v1/SampleFactory.h
+++ b/src/factories/naudio/v1/SampleFactory.h
@@ -46,10 +46,9 @@ public:
inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
return {
REGISTER(Header, NSampleHeaderExporter)
- REGISTER(Binary, NSampleBinaryExporter)
+ REGISTER(Binary, NSampleXMLExporter)
REGISTER(Code, NSampleCodeExporter)
REGISTER(Modding, NSampleModdingExporter)
- REGISTER(XML, NSampleXMLExporter)
};
}
bool SupportModdedAssets() override { return true; }
diff --git a/src/factories/naudio/v1/SoundFontFactory.h b/src/factories/naudio/v1/SoundFontFactory.h
index 72e1190..e8d17bf 100644
--- a/src/factories/naudio/v1/SoundFontFactory.h
+++ b/src/factories/naudio/v1/SoundFontFactory.h
@@ -34,9 +34,8 @@ public:
inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
return {
REGISTER(Header, SoundFontHeaderExporter)
- REGISTER(Binary, SoundFontBinaryExporter)
+ REGISTER(Binary, SoundFontXMLExporter)
REGISTER(Code, SoundFontCodeExporter)
- REGISTER(XML, SoundFontXMLExporter)
};
}