1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-11-23 23:32:45 +00:00

ALT+P will pause

This commit is contained in:
Peter Evans 2018-02-07 14:44:26 -06:00
parent 308a1070ae
commit c1cbdb4a43

View File

@ -104,6 +104,11 @@ vm_event_keyboard_special(vm_event *ev, char ch)
case 'i': case 'i':
vm_reflect_cpu_info(NULL); vm_reflect_cpu_info(NULL);
vm_reflect_machine_info(NULL);
break;
case 'p':
vm_reflect_pause(NULL);
break; break;
} }
} }