From 3a009b85a23ce240ce3fa90736dda2b8a87a75da Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Jun 2014 16:43:47 +0100 Subject: Fix incorrect first_in_cue read offset. --- src/stl_binary_reader.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stl_binary_reader.cc') diff --git a/src/stl_binary_reader.cc b/src/stl_binary_reader.cc index 022ed29..c8eff45 100644 --- a/src/stl_binary_reader.cc +++ b/src/stl_binary_reader.cc @@ -78,7 +78,7 @@ STLBinaryReader::STLBinaryReader (istream& in) maximum_rows = atoi (get_string (253, 2).c_str ()); timecode_status = _tables.timecode_status_file_to_enum (get_string (255, 1)); start_of_programme = get_string (256, 8); - first_in_cue = get_string (256, 8); + first_in_cue = get_string (264, 8); disks = atoi (get_string (272, 1).c_str ()); disk_sequence_number = atoi (get_string (273, 1).c_str ()); country_of_origin = get_string (274, 3); -- cgit v1.2.3