fix de qq bugs en HotSeat
This commit is contained in:
parent
04f5c17704
commit
03f89a8f32
@ -35,7 +35,7 @@ public class ChoiceCombi extends Activity implements SaisieActivity {
|
|||||||
for (int i=0;i<this.saisie.getSizeSelection();i++) {
|
for (int i=0;i<this.saisie.getSizeSelection();i++) {
|
||||||
tabpions[i] = this.saisie.getSelection()[i];
|
tabpions[i] = this.saisie.getSelection()[i];
|
||||||
}
|
}
|
||||||
returnIntent.putExtra("choix", this.saisie.getSelection());
|
returnIntent.putExtra("choix", tabpions);
|
||||||
setResult(Activity.RESULT_OK, returnIntent);
|
setResult(Activity.RESULT_OK, returnIntent);
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ public class Saisie {
|
|||||||
//addSelection permet d'ajouter un pion par index à la zone de saisie
|
//addSelection permet d'ajouter un pion par index à la zone de saisie
|
||||||
public void addSelection(int indexcolor){
|
public void addSelection(int indexcolor){
|
||||||
//On vérifie qu'il n'y a pas déjà 4 pions
|
//On vérifie qu'il n'y a pas déjà 4 pions
|
||||||
if (this.sizeSelection<4){
|
if (this.sizeSelection<4&&this.choix.size()>indexcolor){
|
||||||
this.selection.set(this.sizeSelection,this.choix.get(indexcolor));
|
this.selection.set(this.sizeSelection,this.choix.get(indexcolor));
|
||||||
this.sizeSelection+=1;
|
this.sizeSelection+=1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user