mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Use preferred braces style.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user