summaryrefslogtreecommitdiff
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rwxr-xr-xsrc/data.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/data.c b/src/data.c
index aa5ef91..7c84b1a 100755
--- a/src/data.c
+++ b/src/data.c
@@ -363,15 +363,15 @@ InitializeSwapTable(void)
2, // 00011 = 3
4, // 00100 = 4
4, // 00101 = 5
- 4, // 00110 = 6
+ 4, // 00110 = 6
4, // 00111 = 7
- 8, // 01000 = 8
+ 8, // 01000 = 8
8, // 01001 = 9
8, // 01010 = 10
8, // 01011 = 11
8, // 01100 = 12
8, // 01101 = 13
- 8, // 01110 = 14
+ 8, // 01110 = 14
8, // 01111 = 15
16, // 10000 = 16
16, // 10001 = 17
@@ -386,7 +386,7 @@ InitializeSwapTable(void)
16, // 11010 = 26
16, // 11011 = 27
16, // 11100 = 28
- 16, // 11101 = 29
+ 16, // 11101 = 29
16, // 11110 = 30
16 // 11111 = 31
};
@@ -399,7 +399,7 @@ InitializeSwapTable(void)
ULONG uGains[2];
ULONG uAttacks[2];
INT iDiff;
-
+
for (p = 0; p <= WHITE_KING; p++)
{
if (p > 1)
@@ -419,7 +419,7 @@ InitializeSwapTable(void)
}
//
- // Ok, if the side on move has an attack, play it
+ // Ok, if the side on move has an attack, play it
// and give them credit for some plunder.
//
while(uAttacks[uOnMove])
@@ -464,7 +464,7 @@ InitializeSwapTable(void)
uAttacks[uOnMove] &= ~GET_HIGH_BIT[uAttacks[uOnMove]];
uOnMove = FLIP(uOnMove);
}
-
+
//
// The side on move doesn't have an attack... does
// the side not on move have an attack? If so they
@@ -517,7 +517,7 @@ InitializeSwapTable(void)
}
}
}
- }
+ }
}
}