* changed transport speed in session and slaves from float to double

* added some comments


git-svn-id: svn://localhost/ardour2/branches/3.0@4394 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier
2009-01-09 09:18:24 +00:00
parent 3f662b9f9d
commit 799b6ec97d
12 changed files with 67 additions and 54 deletions

View File

@@ -184,12 +184,12 @@ BasicUI::next_marker ()
}
void
BasicUI::set_transport_speed (float speed)
BasicUI::set_transport_speed (double speed)
{
session->request_transport_speed (speed);
}
float
double
BasicUI::get_transport_speed ()
{
return session->transport_speed ();