| 1028 | bool Stay_paused = 0; |
| 1029 | |
| 1030 | void CEditorApp::resume() { |
| 1031 | if (Stay_paused) |
| 1032 | return; |
| 1033 | |
| 1034 | m_Paused = FALSE; |
| 1035 | ddio_Resume(); |
| 1036 | ddio_KeyFlush(); |
| 1037 | } |
| 1038 | |
| 1039 | /////////////////////////////////////////////////////////////////////////////// |
| 1040 | // |
no test coverage detected