From 7ae1a2852c646a11cd2e8c589d5037ce2ed8307e Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 21 Jan 2016 20:58:02 +0100 Subject: [PATCH] Piccole modifiche al codice balu plis --- main.cpp | 89 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 45 insertions(+), 44 deletions(-) diff --git a/main.cpp b/main.cpp index a78813c..2d93861 100644 --- a/main.cpp +++ b/main.cpp @@ -742,54 +742,55 @@ int main() cout << " 000000 0000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000"<< endl; cout << " 000000 0000 0000 0000 0000 0000 000000 000000 0000 000000 000000 000000"<< endl; titolo= rand()%10; - cout << "\n\n Citazione all'avvio: "<< splash[titolo] < NUOVA PARTITA <"< OPZIONI <"< NUOVA PARTITA <"< OPZIONI <" << endl; + } + selection = getch(); + if(selection==72) + { + cursorpos--; + } + else if(selection==80) + { + cursorpos++; + } + 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)"<> scelta; if(scelta == 'S' || scelta== 's') { - WALL= 0xDB; + WALL= 0xDB; } } }