REFACTOR: Use preferred braces style.

This commit is contained in:
2017-12-20 23:07:46 +00:00
parent 4158d64854
commit e9443388ee
120 changed files with 1016 additions and 1975 deletions

View File

@@ -184,7 +184,7 @@ namespace DiscImageChef.DiscImages
stream.Read(bpsbytes, 0, bpsbytes.Length);
for(int i = 0; i < spt; i++) bps[i] = BitConverter.ToUInt16(bpsbytes, i * 2);
}
else { for(int i = 0; i < spt; i++) bps[i] = (ushort)(128 << n); }
else for(int i = 0; i < spt; i++) bps[i] = (ushort)(128 << n);
if(spt > ImageInfo.SectorsPerTrack) ImageInfo.SectorsPerTrack = spt;