mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-19 23:29:05 +00:00
Mention units.
This commit is contained in:
parent
9b6ccbcc95
commit
dc994f001d
@ -255,12 +255,12 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
|
|||||||
// TODO: write the gap.
|
// TODO: write the gap.
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case Type::GapLength:
|
case Type::GapLength:
|
||||||
printf("Unhandled gap length %zu\n", length);
|
printf("Unhandled gap length %zu bytes\n", length);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
case Type::SampleLength:
|
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);
|
file_.seek(long(length >> 3), SEEK_CUR);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -282,7 +282,7 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
|
|||||||
// TODO: write the data.
|
// TODO: write the data.
|
||||||
switch(type) {
|
switch(type) {
|
||||||
default:
|
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);
|
file_.seek(long(length >> 3), SEEK_CUR);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user