1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-16 18:30:32 +00:00

Mention units.

This commit is contained in:
Thomas Harte 2021-12-27 18:55:11 -05:00
parent 9b6ccbcc95
commit dc994f001d

View File

@ -255,12 +255,12 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
// TODO: write the gap.
switch(type) {
case Type::GapLength:
printf("Unhandled gap length %zu\n", length);
printf("Unhandled gap length %zu bytes\n", length);
break;
default:
case Type::SampleLength:
printf("Unhandled sampled gap length %zu\n", length);
printf("Unhandled sampled gap length %zu bytes\n", length);
file_.seek(long(length >> 3), SEEK_CUR);
break;
}
@ -282,7 +282,7 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
// TODO: write the data.
switch(type) {
default:
printf("Unhandled data type %d, length %zu\n", int(type), length);
printf("Unhandled data type %d, length %zu bits\n", int(type), length);
file_.seek(long(length >> 3), SEEK_CUR);
break;
}