Problems with the compiler I guess...

Hi everyone, I've just done a simple game in C++ (sth similar to impossible rush if you know it) using classes. At first building and running it, everything was perfect, but then running it many times, it started to get slower and slower. It wasn't working the way it did at first. This fact also had happened with other games of mine and I don't what could the reason be! Maybe the compiler? Please help me! thank you in advanvce!
by the way, I'm using code blocks and the compiler is GNU GCC Compiler!
Here's my code:


#include<iostream>
#include<windows.h>
#include<ctime>
#include<conio.h>
#define KEY_UP 72
#define KEY_DOWN 80
#define ENTER 13
using namespace std;

class rush
{
private:
char *map,A,C,B,D;
short x,z,t;

public:
rush()
{
map=new char [1640];
x=20;
t=0;
//zz=80;
}
~rush()
{
delete [] map;
}
void start();
void finish();
void graphics();
void gamelogic();
void ball();
friend void clearscreen();
friend void sp();
friend void s();
};
void clearscreen()
{
HANDLE hOut;
COORD Position;

hOut=GetStdHandle(STD_OUTPUT_HANDLE);

Position.X=0;
Position.Y=0;
SetConsoleCursorPosition(hOut,Position);
}
void sp(int colour)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),colour);
}
void s()
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),7);
}
void rush::start()
{
srand((unsigned)time(0));
for(int p=0;p<1600;++p)
map[p]=' ';
short a,b,c,d;
//zz=80;
a=rand()%4+1;
do{b=rand()%4+1;}while(a==b);
do{c=rand()%4+1;}while(a==c||b==c);
do{d=rand()%4+1;}while(a==d||b==d||c==d);
for(int p=800;p<1520;++p)
{
if(p<960)
if((p+9)%40==0)//2
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
p+=8;B=char(b);}
else//1
{map[p]=char(a);A=char(a);}
else
if(p<1360)
{if(p%40==0)//4
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
p+=8;D=char(d);}
else
if((p+9)%40==0)//2
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
p+=8;}}
else
{if(p%40==0)//4
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
p+=8;}
else//3
{map[p]=char(c);
C=char(c);}}
}
ball();
graphics();
}
void rush::finish()
{
char choise;
system("cls");
sp(780);
cout<<" \nvrei sa joci din nou?(d/n)\n";
s();
end:
cin>>choise;
switch(choise)
{case 'd':
{t=0;start();break;}
case 'n':
{sp(780);
cout<<"\n\n\n\n\n\n\n\tok, la revedere!! "<<char(1);
s();
break;}
default:
sp(780);
cout<<"\n\n\n\n\n\n\n\n\tTasteaza doar d, in caz ca vrei sa joci din nou si n, in caz contrar!\n";
s();
goto end;
}

}
void rush::ball()
{
map[x-40]=' ';
z=rand()%4+1;
x=20;
map[x]=char(z);
}
void rush::graphics()
{
//if(t<15)//17
// Sleep(zz-=10);
map[1175]='S';map[1176]='c';map[1177]='o';map[1178]='r';map[1179]='e';map[1180]=':';map[1181]=' ';
if(t<10)
map[1182]=t+48;
else
{
short x=t;
map[1183]=x%10+48;
x/=10;
map[1182]=x+48;
}
for(int u=0;u<1640;++u)//1520+80
{
if(u%40==0&&u!=0)
cout<<endl;
if(map[u]==char(1))
{
sp(460);//rosu 460
cout<<map[u];
s();
}
else
if(map[u]==char(2))
{
sp(494);//galben
cout<<map[u];
s();
}
else
if(map[u]==char(3))
{
sp(529);//albastru
cout<<map[u];
s();
}
else
if(map[u]==char(4))
{
sp(426);//verde
cout<<map[u];
s();
}
else
{
cout<<map[u];
}
}
clearscreen();
gamelogic();
}
void rush::gamelogic()
{
map[x]=' ';
x+=40;
map[x]=char(z);
if(_kbhit())
{
char ii=_getch();
char k=A;A=D;D=C;C=B;B=k;
switch(ii)
{case ' ':
{
for(int p=800;p<1520;++p)
{
if(p<960)
if((p+9)%40==0)//2
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
p+=8;}
else
map[p]=A;//1
else
if(p<1360)
{if(p%40==0)//4
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
p+=8;}
else
if((p+9)%40==0)//2
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
p+=8;}}
else
{if(p%40==0)//4
{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
p+=8;}
else
if(p>=1369)
map[p]=C;}//3
}
break;
}
default:
break;}
}
if(x==820&&map[x]!=map[840])
{finish();return;}
else
if(x==820&&map[x]==map[840])
{++t;ball();}
graphics();

}
int main()
{
rush impossible;
cout<<"\t\t\tIMPOSSIBLE RUSH\n";
int ww=1,w=0,y=1;
while(ww==1)
{
while(w==1)
{
int arrow=0;
switch(arrow=getch())
{
case KEY_UP:
{y--;
w=0;
break;}
case KEY_DOWN:
{y++;
w=0;
break;}
case ENTER:
{ww=0;
w=0;
break;}
default:
break;
}
}
if(y%3==1)
{clearscreen();cout<<"\n\n\n\t\t <start>\n\t\t\t Hint \n\t\t Best score ";w=1;}
if(y%3==2)
{clearscreen();cout<<"\n\n\n\t\t start \n\t\t\t<Hint>\n\t\t Best score ";w=1;}
if(y%3==0)
{clearscreen();cout<<"\n\n\n\t\t start \n\t\t\t Hint \n\t\t <Best score>";w=1;}
}
if(y%3==2)
{
system("cls");
cout<<"\n\t\tHint\n\n\t\t Try, pressing space, to move the colours such that\n\t\t the color from the top of the square \n\t\tcould be the same with the ball colour.\n\t\t Good luck!!";
getch();
}
if(y%3==0)
{
system("cls");
cout<<"Best score: 35";
getch();
}
system("cls");
impossible.start();
}
Please repost your code using the code tags (under Format:)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#include<iostream>
#include<windows.h>
#include<ctime>
#include<conio.h>
#define KEY_UP 72
#define KEY_DOWN 80
#define ENTER 13
using namespace std;

class rush
{
private:
	char *map,A,C,B,D;
	short x,z,t;

public:
	rush()
	{
		map=new char [1640];
		x=20;
		t=0;
		//zz=80;
	}
	~rush()
	{
		delete [] map;
	}
	void start();
	void finish();
	void graphics();
	void gamelogic();
	void ball();
	friend void clearscreen();
	friend void sp();
	friend void s();
};
void clearscreen()
{
	HANDLE hOut;
	COORD Position;

	hOut=GetStdHandle(STD_OUTPUT_HANDLE);

	Position.X=0;
	Position.Y=0;
	SetConsoleCursorPosition(hOut,Position);
}
void sp(int colour)
{
	SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),colour);
}
void s()
{
	SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),7);
}
void rush::start()
{
	srand((unsigned)time(0));
	for(int p=0;p<1600;++p)
		map[p]=' ';
	short a,b,c,d;
	//zz=80;
	a=rand()%4+1;
	do{b=rand()%4+1;}while(a==b);
	do{c=rand()%4+1;}while(a==c||b==c);
	do{d=rand()%4+1;}while(a==d||b==d||c==d);
	for(int p=800;p<1520;++p)
	{
		if(p<960)
			if((p+9)%40==0)//2
				{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
				p+=8;B=char(b);}
			else//1
				{map[p]=char(a);A=char(a);}
		else
			if(p<1360)
				{if(p%40==0)//4
					{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
					p+=8;D=char(d);}
			    else
					if((p+9)%40==0)//2
						{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
						p+=8;}}
			else
				{if(p%40==0)//4
					{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
					p+=8;}
				else//3
					{map[p]=char(c);
					C=char(c);}}
	}
	ball();
	graphics();
}
void rush::finish()
{
	char choise;
	system("cls");
	sp(780);
	cout<<" \nvrei sa joci din nou?(d/n)\n";
	s();
	end:
		cin>>choise;
		switch(choise)
			{case 'd':
				{t=0;start();break;}
			case 'n':
				{sp(780);
				cout<<"\n\n\n\n\n\n\n\tok, la revedere!! "<<char(1);
				s();
				break;}
			default:
				sp(780);
				cout<<"\n\n\n\n\n\n\n\n\tTasteaza doar d, in caz ca vrei sa joci din nou si n, in caz contrar!\n";
				s();
				goto end;
			}

}
void rush::ball()
{
	map[x-40]=' ';
	z=rand()%4+1;
	x=20;
	map[x]=char(z);
}
void rush::graphics()
{
    //if(t<15)//17
      //  Sleep(zz-=10);
    map[1175]='S';map[1176]='c';map[1177]='o';map[1178]='r';map[1179]='e';map[1180]=':';map[1181]=' ';
    if(t<10)
        map[1182]=t+48;
    else
    {
        short x=t;
        map[1183]=x%10+48;
        x/=10;
        map[1182]=x+48;
    }
	for(int u=0;u<1640;++u)//1520+80
	{
		if(u%40==0&&u!=0)
			cout<<endl;
		if(map[u]==char(1))
		{
			sp(460);//rosu 460
			cout<<map[u];
			s();
		}
		else
			if(map[u]==char(2))
			{
				sp(494);//galben
				cout<<map[u];
				s();
			}
			else
				if(map[u]==char(3))
				{
					sp(529);//albastru
					cout<<map[u];
					s();
				}
				else
					if(map[u]==char(4))
					{
						sp(426);//verde
						cout<<map[u];
						s();
					}
					else
					{
						cout<<map[u];
					}
	}
	clearscreen();
	gamelogic();
}
void rush::gamelogic()
{
	map[x]=' ';
	x+=40;
	map[x]=char(z);
	if(_kbhit())
	{
	    char ii=_getch();
		char k=A;A=D;D=C;C=B;B=k;
		switch(ii)
		{case ' ':
		{
		    for(int p=800;p<1520;++p)
            {
                if(p<960)
                    if((p+9)%40==0)//2
                        {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
                        p+=8;}
                    else
                        map[p]=A;//1
                else
                    if(p<1360)
                        {if(p%40==0)//4
                            {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
                            p+=8;}
                        else
                            if((p+9)%40==0)//2
                                {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
                                p+=8;}}
                    else
                        {if(p%40==0)//4
                            {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
                            p+=8;}
                        else
                             if(p>=1369)
                                map[p]=C;}//3
            }
            break;
		}
		default:
            break;}
	}
	if(x==820&&map[x]!=map[840])
                {finish();return;}
            else
                if(x==820&&map[x]==map[840])
                    {++t;ball();}
	graphics();

}
int main()
{
	rush impossible;
	cout<<"\t\t\tIMPOSSIBLE RUSH\n";
	int ww=1,w=0,y=1;
	while(ww==1)
    {
        while(w==1)
        {
            int arrow=0;
            switch(arrow=getch())
            {
                case KEY_UP:
                    {y--;
                     w=0;
                     break;}
                case KEY_DOWN:
                    {y++;
                     w=0;
                     break;}
                case ENTER:
                    {ww=0;
                     w=0;
                     break;}
                default:
                    break;
            }
        }
        if(y%3==1)
        {clearscreen();cout<<"\n\n\n\t\t       <start>\n\t\t\t Hint \n\t\t      Best score ";w=1;}
        if(y%3==2)
        {clearscreen();cout<<"\n\n\n\t\t        start \n\t\t\t<Hint>\n\t\t      Best score ";w=1;}
        if(y%3==0)
        {clearscreen();cout<<"\n\n\n\t\t        start \n\t\t\t Hint \n\t\t     <Best score>";w=1;}
    }
    if(y%3==2)
	{
	    system("cls");
        cout<<"\n\t\tHint\n\n\t\t     Try, pressing space, to move the colours such that\n\t\t the color from the top of the square \n\t\tcould be the same with the ball colour.\n\t\t    Good luck!!";
        getch();
    }
    if(y%3==0)
	{
	    system("cls");
        cout<<"Best score: 35";
        getch();
    }
    system("cls");
	impossible.start();
}
Sorry, I'm new here, hope you will help me! thanks!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#include<iostream>
#include<windows.h>
#include<ctime>
#include<conio.h>
#define KEY_UP 72
#define KEY_DOWN 80
#define ENTER 13
using namespace std;

class rush
{
private:
	char *map,A,C,B,D;
	short x,z,t;

public:
	rush()
	{
		map=new char [1640];
		x=20;
		t=0;
		//zz=80;
	}
	~rush()
	{
		delete [] map;
	}
	void start();
	void finish();
	void graphics();
	void gamelogic();
	void ball();
	friend void clearscreen();
	friend void sp();
	friend void s();
};
void clearscreen()
{
	HANDLE hOut;
	COORD Position;

	hOut=GetStdHandle(STD_OUTPUT_HANDLE);

	Position.X=0;
	Position.Y=0;
	SetConsoleCursorPosition(hOut,Position);
}
void sp(int colour)
{
	SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),colour);
}
void s()
{
	SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),7);
}
void rush::start()
{
	srand((unsigned)time(0));
	for(int p=0;p<1600;++p)
		map[p]=' ';
	short a,b,c,d;
	//zz=80;
	a=rand()%4+1;
	do{b=rand()%4+1;}while(a==b);
	do{c=rand()%4+1;}while(a==c||b==c);
	do{d=rand()%4+1;}while(a==d||b==d||c==d);
	for(int p=800;p<1520;++p)
	{
		if(p<960)
			if((p+9)%40==0)//2
				{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
				p+=8;B=char(b);}
			else//1
				{map[p]=char(a);A=char(a);}
		else
			if(p<1360)
				{if(p%40==0)//4
					{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
					p+=8;D=char(d);}
			    else
					if((p+9)%40==0)//2
						{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(b);
						p+=8;}}
			else
				{if(p%40==0)//4
					{map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=char(d);
					p+=8;}
				else//3
					{map[p]=char(c);
					C=char(c);}}
	}
	ball();
	graphics();
}
void rush::finish()
{
	char choise;
	system("cls");
	sp(780);
	cout<<" \nDo you want to play again this game?(y/n)\n";
	s();
	end:
		cin>>choise;
		switch(choise)
			{case 'y':
				{t=0;start();break;}
			case 'n':
				{sp(780);
				cout<<"\n\n\n\n\n\n\n\tok, la revedere!! "<<char(1);
				s();
				break;}
			default:
				sp(780);
				cout<<"\n\n\n\n\n\n\n\n\tTasteaza doar d, in caz ca vrei sa joci din nou si n, in caz contrar!\n";
				s();
				goto end;
			}

}
void rush::ball()
{
	map[x-40]=' ';
	z=rand()%4+1;
	x=20;
	map[x]=char(z);
}
void rush::graphics()
{
    //if(t<15)//17
      //  Sleep(zz-=10);
    map[1175]='S';map[1176]='c';map[1177]='o';map[1178]='r';map[1179]='e';map[1180]=':';map[1181]=' ';
    if(t<10)
        map[1182]=t+48;
    else
    {
        short x=t;
        map[1183]=x%10+48;
        x/=10;
        map[1182]=x+48;
    }
	for(int u=0;u<1640;++u)//1520+80
	{
		if(u%40==0&&u!=0)
			cout<<endl;
		if(map[u]==char(1))
		{
			sp(460);//rosu 460
			cout<<map[u];
			s();
		}
		else
			if(map[u]==char(2))
			{
				sp(494);//galben
				cout<<map[u];
				s();
			}
			else
				if(map[u]==char(3))
				{
					sp(529);//albastru
					cout<<map[u];
					s();
				}
				else
					if(map[u]==char(4))
					{
						sp(426);//verde
						cout<<map[u];
						s();
					}
					else
					{
						cout<<map[u];
					}
	}
	clearscreen();
	gamelogic();
}
void rush::gamelogic()
{
	map[x]=' ';
	x+=40;
	map[x]=char(z);
	if(_kbhit())
	{
	    char ii=_getch();
		char k=A;A=D;D=C;C=B;B=k;
		switch(ii)
		{case ' ':
		{
		    for(int p=800;p<1520;++p)
            {
                if(p<960)
                    if((p+9)%40==0)//2
                        {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
                        p+=8;}
                    else
                        map[p]=A;//1
                else
                    if(p<1360)
                        {if(p%40==0)//4
                            {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
                            p+=8;}
                        else
                            if((p+9)%40==0)//2
                                {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=B;
                                p+=8;}}
                    else
                        {if(p%40==0)//4
                            {map[p]=map[p+1]=map[p+2]=map[p+3]=map[p+4]=map[p+5]=map[p+6]=map[p+7]=map[p+8]=D;
                            p+=8;}
                        else
                             if(p>=1369)
                                map[p]=C;}//3
            }
            break;
		}
		default:
            break;}
	}
	if(x==820&&map[x]!=map[840])
                {finish();return;}
            else
                if(x==820&&map[x]==map[840])
                    {++t;ball();}
	graphics();

}
int main()
{
	rush impossible;
	cout<<"\t\t\tIMPOSSIBLE RUSH\n";
	int ww=1,w=0,y=1;
	while(ww==1)
    {
        while(w==1)
        {
            int arrow=0;
            switch(arrow=getch())
            {
                case KEY_UP:
                    {y--;
                     w=0;
                     break;}
                case KEY_DOWN:
                    {y++;
                     w=0;
                     break;}
                case ENTER:
                    {ww=0;
                     w=0;
                     break;}
                default:
                    break;
            }
        }
        if(y%3==1)
        {clearscreen();cout<<"\n\n\n\t\t       <start>\n\t\t\t Hint \n\t\t      Best score ";w=1;}
        if(y%3==2)
        {clearscreen();cout<<"\n\n\n\t\t        start \n\t\t\t<Hint>\n\t\t      Best score ";w=1;}
        if(y%3==0)
        {clearscreen();cout<<"\n\n\n\t\t        start \n\t\t\t Hint \n\t\t     <Best score>";w=1;}
    }
    if(y%3==2)
	{
	    system("cls");
        cout<<"\n\t\tHint\n\n\t\t     Try, pressing space, to move the colours such that\n\t\t the color from the top of the square \n\t\tcould be the same with the ball colour.\n\t\t    Good luck!!";
        getch();
    }
    if(y%3==0)
	{
	    system("cls");
        cout<<"Best score: 35";
        getch();
    }
    system("cls");
	impossible.start();
}
My last post is the final version! ;-)
Topic archived. No new replies allowed.