Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 6a8499f8ed
commit f8bc81d4f5
149 changed files with 6983 additions and 6970 deletions

View File

@@ -53,16 +53,16 @@ namespace DiscImageChef
int counter = 0;
int subcounter = 0;
for (long i = 0; i < array.LongLength; i++)
for(long i = 0; i < array.LongLength; i++)
{
if (counter == 0)
if(counter == 0)
{
sb.AppendLine();
sb.AppendFormat("{0:X16} ", i);
}
else
{
if (subcounter == 3 )
if(subcounter == 3)
{
sb.Append(" ");
subcounter = 0;
@@ -76,7 +76,7 @@ namespace DiscImageChef
sb.AppendFormat("{0:X2}", array[i]);
if (counter == width - 1)
if(counter == width - 1)
{
counter = 0;
subcounter = 0;