From a0f3b45b13db712fb954b83dca3f229c8ba4c9ec Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Mar 2010 01:48:52 +0000 Subject: [PATCH] correct a mistake in previous AIFF+Bendian change git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6769 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/export_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc index 9498f53fec..00d2ebbe66 100644 --- a/gtk2_ardour/export_dialog.cc +++ b/gtk2_ardour/export_dialog.cc @@ -1184,10 +1184,10 @@ ExportDialog::header_chosen () bitdepth_format_combo.set_sensitive (false); } else { if ((fmt & SF_FORMAT_TYPEMASK) == SF_FORMAT_WAV) { - endian_format_combo.set_active_text (sndfile_endian_formats_strings[SF_ENDIAN_LITTLE]); + endian_format_combo.set_active_text (sndfile_endian_formats_strings[0]); endian_format_combo.set_sensitive (false); } else if ((fmt & SF_FORMAT_TYPEMASK) == SF_FORMAT_AIFF) { - endian_format_combo.set_active_text (sndfile_endian_formats_strings[SF_ENDIAN_BIG]); + endian_format_combo.set_active_text (sndfile_endian_formats_strings[1]); endian_format_combo.set_sensitive (false); } else { endian_format_combo.set_sensitive (true);