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:
parent
b1418f7fae
commit
9fb01161c3
1 changed files with 1 additions and 1 deletions
|
@ -366,8 +366,8 @@ int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
|
||||||
Game(hWnd);
|
Game(hWnd);
|
||||||
|
|
||||||
// End stuff
|
// End stuff
|
||||||
EndDirectSound();
|
|
||||||
EndTextObject();
|
EndTextObject();
|
||||||
|
EndDirectSound();
|
||||||
EndDirectDraw(hWnd);
|
EndDirectDraw(hWnd);
|
||||||
|
|
||||||
ReleaseMutex(hMutex);
|
ReleaseMutex(hMutex);
|
||||||
|
|
Loading…
Add table
Reference in a new issue