1
Fork 0
mirror of https://github.com/Steffo99/iiiiil-gioco.git synced 2024-11-21 23:44:21 +00:00

Piccole modifiche al codice

balu plis
This commit is contained in:
Steffo 2016-01-21 20:58:02 +01:00
parent 638063814b
commit 7ae1a2852c

View file

@ -744,9 +744,10 @@ int main()
titolo= rand()%10;
cout << "\n\n Citazione all'avvio: "<< splash[titolo] << endl;
cout << "\n\n\n\n Premi INVIO per entrare nel menu!" << endl;
char a=getchar();
while(1)
getch();
while(true)
{
char selection = getch();
system("cls");
if(cursorpos==1)
{
@ -761,7 +762,7 @@ int main()
cout << "\n\n > NUOVA PARTITA <"<<endl;
cout << "\n OPZIONI"<<endl;
}
if(cursorpos==2)
else if(cursorpos==2)
{
cout << " "<<endl;
cout << " 000000" << endl;
@ -774,22 +775,22 @@ int main()
cout << "\n\n NUOVA PARTITA " << endl;
cout << "\n > OPZIONI <" << endl;
}
a=getch();
if(a==72)
selection = getch();
if(selection==72)
{
cursorpos=cursorpos-1;
cursorpos--;
}
if(a==80)
else if(selection==80)
{
cursorpos=cursorpos+1;
cursorpos++;
}
if (a==13)//PRESSIONE ENTER SU ELEMENTI MENU
else if(selection==13)//PRESSIONE ENTER SU ELEMENTI MENU
{
if(cursorpos==1)//AVVIO GIOCO
{
break;
}
if (cursorpos==2)
else if(cursorpos==2)
{
system("cls");
cout << "Modificare tipo blocco? (S/N)"<<endl;