summaryrefslogtreecommitdiff
path: root/src/drumkitloader.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2017-10-14 14:09:05 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2017-10-14 14:09:05 +0200
commit1ec558fa5875d4827a246ccfe0ec8de84d5c5076 (patch)
treece02e30c62cce6b40fb36df4434e18dde8e3a3bf /src/drumkitloader.cc
parentaab40a86534b57fae7c309b992d7a11932433a6f (diff)
Remove use of MemChecker as we don't need it anymore (due to diskstreaming) and because some build systems are responding to it with sporadic failures. Thanks to James Cowgill for pointing this out.
Diffstat (limited to 'src/drumkitloader.cc')
-rw-r--r--src/drumkitloader.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/drumkitloader.cc b/src/drumkitloader.cc
index 6f0521b..e6f4c45 100644
--- a/src/drumkitloader.cc
+++ b/src/drumkitloader.cc
@@ -121,12 +121,12 @@ bool DrumKitLoader::loadkit(const std::string& file)
}
// Check if there is enough free RAM to load the drumkit.
- if(!memchecker.enoughFreeMemory(kit))
- {
- printf("WARNING: "
- "There doesn't seem to be enough RAM available to load the kit.\n"
- "Trying to load it anyway...\n");
- }
+ //if(!memchecker.enoughFreeMemory(kit))
+ //{
+ // printf("WARNING: "
+ // "There doesn't seem to be enough RAM available to load the kit.\n"
+ // "Trying to load it anyway...\n");
+ //}
// Put some information about the kit into the settings
settings.drumkit_name = kit.getName();