From 2c312daa5bf150e8314e0a48769afb184dd95f54 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 16 Feb 2011 19:33:10 +0000 Subject: Use simpler, single, file extensions. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2963 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/ThreadedLoader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gui') diff --git a/src/gui/ThreadedLoader.cpp b/src/gui/ThreadedLoader.cpp index afc90f89..cd5e5ce6 100644 --- a/src/gui/ThreadedLoader.cpp +++ b/src/gui/ThreadedLoader.cpp @@ -20,6 +20,7 @@ #include "module/World.hpp" #include "module/Module.hpp" #include "module/ingen_module.hpp" +#include "serialisation/names.hpp" #include "App.hpp" #include "ThreadedLoader.hpp" #include "client/PatchModel.hpp" @@ -137,7 +138,7 @@ ThreadedLoader::save_patch_event(SharedPtr model, const string& file { if (App::instance().serialiser()) { Serialiser::Record r(model, filename); - if (filename.find(".ing.lv2") != string::npos) + if (filename.find(INGEN_BUNDLE_EXT) != string::npos) App::instance().serialiser()->write_bundle(r); else App::instance().serialiser()->to_file(r); -- cgit v1.2.1