summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-08-10 18:14:08 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-08-10 18:14:08 -0400
commit3a648098201bcc6c988034189ec4831e28e20173 (patch)
tree93e0bca309803864ef4d65b2283859bf196d43a1 /libs/ardour/ardour/route.h
parent94014dc5d56a5762a0cec83116255ae44ee46527 (diff)
convert Route::_solo_isolated from counter to a boolean.
This correctly manages the semantics - the counting part is only intended to cover upstream/downstream effects, not "am i solo-isolated" (similar to self-soloed)
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index ec6fa8ca8d..64e40e165d 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -546,7 +546,7 @@ class LIBARDOUR_API Route : public SessionObject, public Automatable, public Rou
bool _self_solo;
uint32_t _soloed_by_others_upstream;
uint32_t _soloed_by_others_downstream;
- uint32_t _solo_isolated;
+ bool _solo_isolated;
uint32_t _solo_isolated_by_upstream;
void mod_solo_isolated_by_upstream (bool, void*);