Fix mangled formatting caused by clang-format.

This commit is contained in:
dg
2023-05-09 21:39:35 +00:00
parent 466c3c34e5
commit baaeb0bca7
10 changed files with 231 additions and 418 deletions

View File

@@ -100,14 +100,14 @@ public:
else if (currentTrackTrack != track)
{
error(
"NFD: all sectors in a track must belong to the "
"same track");
"NFD: all sectors in a track must belong to the same "
"track");
}
else if (currentTrackHead != head)
{
error(
"NFD: all sectors in a track must belong to the "
"same head");
"NFD: all sectors in a track must belong to the same "
"head");
}
if (trackSectorSize < 0)
{
@@ -142,8 +142,8 @@ public:
else if (trackSectorSize != sectorSize)
{
error(
"NFD: multiple sector sizes per track are "
"currently unsupported");
"NFD: multiple sector sizes per track are currently "
"unsupported");
}
Bytes data(sectorSize);
inputFile.read((char*)data.begin(), data.size());