summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-21 16:43:47 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-21 16:43:47 +0100
commit3a009b85a23ce240ce3fa90736dda2b8a87a75da (patch)
treeef1dea7a5a48768e461d290d02a1a540e61da500 /src
parent99d72a19f9e5ebbbb36bbbb95164a15c165a6a42 (diff)
Fix incorrect first_in_cue read offset.
Diffstat (limited to 'src')
-rw-r--r--src/stl_binary_reader.cc2
1 files changed, 1 insertions, 1 deletions
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);