games/mines -g: elements taken from list should be -2, not -1
This commit is contained in:
parent
d05b90f300
commit
28c519295f
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ merge(CList **clp, int *nclp, int start, int split)
|
||||||
next: ;
|
next: ;
|
||||||
}
|
}
|
||||||
qi = q->next;
|
qi = q->next;
|
||||||
q->next = -1;
|
q->next = -2;
|
||||||
}
|
}
|
||||||
if(zero != 0){
|
if(zero != 0){
|
||||||
for(i = 0, j = 0; i < *nclp; i++)
|
for(i = 0, j = 0; i < *nclp; i++)
|
||||||
|
|
Loading…
Reference in a new issue