From: Robin Gareus Date: Mon, 29 Oct 2012 17:29:31 +0000 (+0000) Subject: fix label for 24.975fps X-Git-Tag: 3.0~700 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=b0fb2a032b09ce17d9ebc44fca71d301a47b04af;p=ardour.git fix label for 24.975fps the enum is not changed; it would break loading existing sessions. git-svn-id: svn://localhost/ardour2/branches/3.0@13365 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/gtk2_ardour/session_option_editor.cc b/gtk2_ardour/session_option_editor.cc index b21e76c140..5059555fff 100644 --- a/gtk2_ardour/session_option_editor.cc +++ b/gtk2_ardour/session_option_editor.cc @@ -49,7 +49,7 @@ SessionOptionEditor::SessionOptionEditor (Session* s) smf->add (timecode_23976, _("23.976")); smf->add (timecode_24, _("24")); - smf->add (timecode_24976, _("24.976")); + smf->add (timecode_24976, _("24.975")); smf->add (timecode_25, _("25")); smf->add (timecode_2997, _("29.97")); smf->add (timecode_2997drop, _("29.97 drop"));