From: havoc Date: Mon, 2 Feb 2004 14:55:05 +0000 (+0000) Subject: fix misplaced extern S_UnblockSound X-Git-Tag: xonotic-v0.1.0preview~6124 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a40195d9f77dc041976c4a130f5bf8fb69dbc181;p=xonotic%2Fdarkplaces.git fix misplaced extern S_UnblockSound git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3864 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sys_win.c b/sys_win.c index ad69c1cd..391f9c5a 100644 --- a/sys_win.c +++ b/sys_win.c @@ -28,7 +28,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "direct.h" extern void S_BlockSound (void); -extern void S_UnblockSound (void); cvar_t sys_usetimegettime = {CVAR_SAVE, "sys_usetimegettime", "1"}; diff --git a/vid_wgl.c b/vid_wgl.c index 3733ca1d..47bde254 100644 --- a/vid_wgl.c +++ b/vid_wgl.c @@ -26,6 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include extern void S_BlockSound (void); +extern void S_UnblockSound (void); extern HINSTANCE global_hInstance;