diff --git a/Makefile.am b/Makefile.am index e32157954..1884fc6df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,6 +4,8 @@ AUTOMAKE_OPTIONS= foreign SUBDIRS= debian doc include libs qw nq EXTRA_DIST= ChangeLog RPM/build_rpm.in \ + tools/cross/cross-configure.sh tools/cross/cross-make.sh \ + tools/cross/cross.sh \ tools/gas2masm/Makefile tools/gas2masm/gas2masm.c \ tools/gas2masm/gas2masm.dsp tools/gas2masm/gas2masm.dsw \ tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp \ diff --git a/libs/video/targets/vid_wgl.c b/libs/video/targets/vid_wgl.c index 6ca6e5877..6af707f04 100644 --- a/libs/video/targets/vid_wgl.c +++ b/libs/video/targets/vid_wgl.c @@ -687,10 +687,10 @@ AppActivate (BOOL fActive, BOOL minimize) // enable/disable sound on focus gain/loss if (!ActiveApp && sound_active) { - S_BlockSound (); + //XXX S_BlockSound (); sound_active = false; } else if (ActiveApp && !sound_active) { - S_UnblockSound (); + //XXX S_UnblockSound (); sound_active = true; } diff --git a/nq/source/sys_win.c b/nq/source/sys_win.c index 345e2f3e7..4f943fe84 100644 --- a/nq/source/sys_win.c +++ b/nq/source/sys_win.c @@ -620,7 +620,7 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, Sys_Init (); // because sound is off until we become active - S_BlockSound (); + //XXX S_BlockSound (); Sys_Printf ("Host_Init\n"); Host_Init (&parms); diff --git a/qw/source/cl_ngraph.c b/qw/source/cl_ngraph.c index 2cb3798f4..d8f4d431c 100644 --- a/qw/source/cl_ngraph.c +++ b/qw/source/cl_ngraph.c @@ -30,6 +30,7 @@ # include "config.h" #endif +#include "QF/compat.h" #include "QF/draw.h" #include "QF/render.h" diff --git a/qw/source/cl_sys_win.c b/qw/source/cl_sys_win.c index 5b8796bb1..461890734 100644 --- a/qw/source/cl_sys_win.c +++ b/qw/source/cl_sys_win.c @@ -479,7 +479,7 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, Sys_Error ("Couldn't create event"); // because sound is off until we become active - S_BlockSound (); + //XXX S_BlockSound (); Sys_Printf ("Host_Init\n"); Host_Init ();