Swap two function calls around

This matches the original EXE. I didn't catch it while doing the
ASM-accuracy checks because absolute addresses don't match yet.

Thanks to Gabe for noticing this.
This commit is contained in:
Clownacy 2019-10-26 23:40:32 +01:00
parent b1418f7fae
commit 9fb01161c3

View file

@ -366,8 +366,8 @@ int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
Game(hWnd);
// End stuff
EndDirectSound();
EndTextObject();
EndDirectSound();
EndDirectDraw(hWnd);
ReleaseMutex(hMutex);