[host] added getc to wait around when debugging

This commit is contained in:
Geoffrey McRae 2017-11-04 06:12:44 +11:00
parent 1975bc13bc
commit 346f62a48a

View File

@ -79,5 +79,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdParam
break; break;
svc->DeInitialize(); svc->DeInitialize();
#ifdef DEBUG
getc(stdin);
#endif
return 0; return 0;
} }