summaryrefslogtreecommitdiffstats
path: root/raul/JackDriver.h
diff options
context:
space:
mode:
Diffstat (limited to 'raul/JackDriver.h')
-rw-r--r--raul/JackDriver.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/raul/JackDriver.h b/raul/JackDriver.h
index 8ec2572..cc42c02 100644
--- a/raul/JackDriver.h
+++ b/raul/JackDriver.h
@@ -45,8 +45,9 @@ public:
void activate();
void deactivate();
- bool is_attached() const { return (_client != NULL); }
- bool is_realtime() const { return _client && jack_is_realtime(_client); }
+ bool is_activated() const { return _is_activated; }
+ bool is_attached() const { return (_client != NULL); }
+ bool is_realtime() const { return _client && jack_is_realtime(_client); }
void start_transport() { jack_transport_start(_client); }
void stop_transport() { jack_transport_stop(_client); }