From bbffc8dca5e05f566830ef7153d6259cc7283372 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 6 Mar 2006 21:26:09 +0000 Subject: [PATCH] okay, so ALL the avi code should be disabled on not-windows. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2061 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/m_mp3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/client/m_mp3.c b/engine/client/m_mp3.c index 54626a40..1fd6ae9c 100644 --- a/engine/client/m_mp3.c +++ b/engine/client/m_mp3.c @@ -1258,7 +1258,7 @@ qboolean Media_DecodeFrame(cin_t *cin) } break; - +#ifdef WINAVI case MFT_AVI: { LPBITMAPINFOHEADER lpbi; // Holds The Bitmap Header Information @@ -1323,6 +1323,7 @@ qboolean Media_DecodeFrame(cin_t *cin) } } return true; +#endif } return false; }