commit | 3f089a196278cf37645798b3e964a23617f055b8 | [log] [tgz] |
---|---|---|
author | Joshua Thielen <thielen@netprince.net> | Sun Nov 25 00:49:10 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sun Nov 25 00:49:10 2001 +0000 |
tree | 83fa51491b704b63fc2c5d8cec9469e12ab564fc | |
parent | df90b00e122c4d2312c80e30209e3c8946621633 [diff] [blame] |
mmsystem.dll should be automatically loaded for 16-bit apps.
diff --git a/miscemu/main.c b/miscemu/main.c index 1b9e740..aad576c 100644 --- a/miscemu/main.c +++ b/miscemu/main.c
@@ -34,6 +34,9 @@ HINSTANCE16 instance; HMODULE user32; + /* some programs assume mmsystem is always present */ + LoadLibrary16( "mmsystem.dll" ); + if ((instance = NE_StartMain( main_exe_name, main_exe_file )) < 32) { if (instance == 11) /* try DOS format */