Fixed DX9 window close shutdown.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2569 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e8556a5391
commit
658679876e
|
@ -52,7 +52,9 @@ namespace EmuWindow
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case WM_CLOSE:
|
case WM_CLOSE:
|
||||||
exit(0);
|
Shutdown();
|
||||||
|
// Simple hack to easily exit without stopping. Hope to fix the stopping errors soon.
|
||||||
|
ExitProcess(0);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case WM_DESTROY:
|
case WM_DESTROY:
|
||||||
|
|
Loading…
Reference in New Issue