git-svn-id: svn://kolibrios.org@3776 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2013-07-07 12:33:16 +00:00
parent 6be8a6f21c
commit b32d90764e

View File

@ -47,7 +47,7 @@ void main()
case evButton: case evButton:
id = GetButtonID(); id = GetButtonID();
if (id==1) ExitProcess(); if (id==1) ExitProcess();
if (id==2) goto _NEW_GAME_MARK; if (id==2) || (id==3) goto _NEW_GAME_MARK;
if (id>=100) if (id>=100)
{ {
if (check_for_end()) break; //åñëè èãðà çàêîí÷åíà if (check_for_end()) break; //åñëè èãðà çàêîí÷åíà
@ -235,7 +235,7 @@ void draw_clicks_num()
copystr(#REZULT_TEXT, #rezult); copystr(#REZULT_TEXT, #rezult);
copystr(IntToStr(BLOCKS_LEFT), #rezult+strlen(#rezult)); copystr(IntToStr(BLOCKS_LEFT), #rezult+strlen(#rezult));
if (check_for_end()==1) copystr("Epic WIN!!1", #rezult); if (check_for_end()==1) copystr("Epic WIN!!1", #rezult);
DrawFlatButton(BLOCK_SIZE*BLOCKS_NUM/2-70, BLOCK_SIZE*BLOCKS_NUM/2-20, 140, 40, 2, #rezult); DrawFlatButton(BLOCK_SIZE*BLOCKS_NUM/2-70, BLOCK_SIZE*BLOCKS_NUM/2-20, 140, 40, 3, #rezult);
} }
} }
@ -248,7 +248,7 @@ void new_game()
//÷òîáû îòìåòèòü êâàäðàòèêè â ïðîöåññå çàëèâêè è DELETED_BLOCK äëÿ èõ óäàëåíèÿ //÷òîáû îòìåòèòü êâàäðàòèêè â ïðîöåññå çàëèâêè è DELETED_BLOCK äëÿ èõ óäàëåíèÿ
for (i=0;i<BLOCKS_NUM*BLOCKS_NUM;i++) for (i=0;i<BLOCKS_NUM*BLOCKS_NUM;i++)
blocks_matrix[i] = random(5); blocks_matrix[i] = random(5);
DeleteButton(2); DeleteButton(3);
} }