1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Minor style fix.

This commit is contained in:
Thomas Harte 2018-07-10 20:01:11 -04:00
parent 3862fdb44c
commit a0f817108e

View File

@ -38,7 +38,7 @@ std::shared_ptr<Track> Storage::Disk::track_for_sectors(uint8_t *const source, i
source_pointer += byte_size;
}
if(sectors.size()) {
if(!sectors.empty()) {
return is_double_density ? Storage::Encodings::MFM::GetMFMTrackWithSectors(sectors) : Storage::Encodings::MFM::GetFMTrackWithSectors(sectors);
}