forked from KolibriOS/kolibrios
fix for #3273
git-svn-id: svn://kolibrios.org@3776 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
6be8a6f21c
commit
b32d90764e
@ -47,7 +47,7 @@ void main()
|
||||
case evButton:
|
||||
id = GetButtonID();
|
||||
if (id==1) ExitProcess();
|
||||
if (id==2) goto _NEW_GAME_MARK;
|
||||
if (id==2) || (id==3) goto _NEW_GAME_MARK;
|
||||
if (id>=100)
|
||||
{
|
||||
if (check_for_end()) break; //åñëè èãðà çàêîí÷åíà
|
||||
@ -235,7 +235,7 @@ void draw_clicks_num()
|
||||
copystr(#REZULT_TEXT, #rezult);
|
||||
copystr(IntToStr(BLOCKS_LEFT), #rezult+strlen(#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 äëÿ èõ óäàëåíèÿ
|
||||
for (i=0;i<BLOCKS_NUM*BLOCKS_NUM;i++)
|
||||
blocks_matrix[i] = random(5);
|
||||
DeleteButton(2);
|
||||
DeleteButton(3);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user