summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/types.h
diff options
context:
space:
mode:
authorJohn Anderson <ardour@semiosix.com>2007-07-31 10:52:23 +0000
committerJohn Anderson <ardour@semiosix.com>2007-07-31 10:52:23 +0000
commit2def7ef1abd7a30e05aa25aebd02e7987946bf1a (patch)
treef011d8764bbcebf38a2091cd4004f4cf5ae626d5 /libs/surfaces/mackie/types.h
parent0259d682595f966528904cd9b1f99c4380aa2751 (diff)
Add Control::in_use. Add a timeout-generated stop event to Pot.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2197 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/mackie/types.h')
-rw-r--r--libs/surfaces/mackie/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/mackie/types.h b/libs/surfaces/mackie/types.h
index 21b0d1989a..be5c7e8b79 100644
--- a/libs/surfaces/mackie/types.h
+++ b/libs/surfaces/mackie/types.h
@@ -64,7 +64,7 @@ enum ButtonState { neither = -1, release = 0, press = 1 };
*/
struct ControlState
{
- ControlState(): pos(0.0), delta(0.0), button_state(neither) {}
+ ControlState(): pos(0.0), sign(0), delta(0.0), ticks(0), led_state(off), button_state(neither) {}
ControlState( LedState ls ): pos(0.0), delta(0.0), led_state(ls), button_state(neither) {}