REFACTOR: Use preferred braces style.

This commit is contained in:
2017-12-21 00:44:33 +00:00
parent e9443388ee
commit bce69c9161
171 changed files with 5 additions and 1412 deletions

View File

@@ -234,7 +234,6 @@ namespace DiscImageChef.Decoders.Sega
.AppendLine();
IPBinInformation.AppendFormat("Peripherals:").AppendLine();
foreach(byte peripheral in ipbin.peripherals)
{
switch((char)peripheral)
{
case 'A':
@@ -275,11 +274,9 @@ namespace DiscImageChef.Decoders.Sega
IPBinInformation.AppendFormat("Game supports unknown peripheral {0}.", peripheral).AppendLine();
break;
}
}
IPBinInformation.AppendLine("Regions supported:");
foreach(byte region in ipbin.region_codes)
{
switch((char)region)
{
case 'J':
@@ -296,7 +293,6 @@ namespace DiscImageChef.Decoders.Sega
IPBinInformation.AppendFormat("Game supports unknown region {0}.", region).AppendLine();
break;
}
}
return IPBinInformation.ToString();
}