summaryrefslogtreecommitdiff
path: root/muse2/muse/gconfig.h
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-12-25 19:13:12 +0000
committerFlorian Jung <flo@windfisch.org>2011-12-25 19:13:12 +0000
commitc836582af5661f1ca0e7d93c2674c947462faeb0 (patch)
tree62c2efc3499e886bc19504459cb985aa0f3c8141 /muse2/muse/gconfig.h
parentf7bd12297b81b95371713af725c47f8c56a77550 (diff)
added config option for switching between "prefer old/new drumtracks"
and "only show new/old drumtracks". defaults to "prefer new"
Diffstat (limited to 'muse2/muse/gconfig.h')
-rw-r--r--muse2/muse/gconfig.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/muse2/muse/gconfig.h b/muse2/muse/gconfig.h
index f611687f..4ba9efea 100644
--- a/muse2/muse/gconfig.h
+++ b/muse2/muse/gconfig.h
@@ -47,6 +47,13 @@ enum newDrumRecordCondition_t
namespace MusEGlobal {
+enum drumTrackPreference_t
+{
+ PREFER_OLD = 0,
+ PREFER_NEW = 1,
+ ONLY_OLD = 2,
+ ONLY_NEW = 3
+};
//---------------------------------------------------------
// MixerConfig
//---------------------------------------------------------
@@ -180,6 +187,7 @@ struct GlobalConfigValues {
MusECore::newDrumRecordCondition_t newDrumRecordCondition;
bool addHiddenTracks;
bool unhideTracks;
+ drumTrackPreference_t drumTrackPreference;
};