Bug fix with finstring
This commit is contained in:
parent
de77196ccc
commit
fafdad7290
@ -90,12 +90,12 @@ char * fen_string_get_state(void)
|
|||||||
}
|
}
|
||||||
fen_append(' ');
|
fen_append(' ');
|
||||||
char options[2][2] = {{'K', 'Q'}, {'k', 'q'}};
|
char options[2][2] = {{'K', 'Q'}, {'k', 'q'}};
|
||||||
bool castle = true;
|
bool castle = false;
|
||||||
for(int color = 0; color < 2; color++){
|
for(int color = 0; color < 2; color++){
|
||||||
for(int k_q = 0; k_q < 2; k_q++){
|
for(int k_q = 0; k_q < 2; k_q++){
|
||||||
if(state->castling_allowed[color][k_q])
|
if(state->castling_allowed[color][k_q])
|
||||||
{
|
{
|
||||||
castle = false;
|
castle = true;
|
||||||
fen_append(options[color][k_q]);
|
fen_append(options[color][k_q]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user