fix autobuild

git-svn-id: svn://kolibrios.org@5707 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2015-08-10 10:55:14 +00:00
parent b24c17580f
commit c032ebbe0f
4 changed files with 13 additions and 25 deletions

View File

@@ -50,7 +50,6 @@ int cur_action_buf;
void FileMenu()
{
word key,key2;
proc_info MenuForm;
int index;
@@ -78,13 +77,10 @@ void FileMenu()
break;
case evKey:
GetFullKey();
key = AH;
$shr eax,16
key2 = AL;
if (key2==SCAN_CODE_ESC){cmd_free=1;ExitProcess();}
else if (key2 == SCAN_CODE_ENTER) {action_buf = cur_action_buf; cmd_free=1; ExitProcess(); }
if (menu.ProcessKey(key2)) MenuListRedraw();
GetKeys();
if (key_scancode==SCAN_CODE_ESC){cmd_free=1;ExitProcess();}
else if (key_scancode == SCAN_CODE_ENTER) {action_buf = cur_action_buf; cmd_free=1; ExitProcess(); }
if (menu.ProcessKey(key_scancode)) MenuListRedraw();
break;
case evReDraw: _MENU_DRAW: