From 9bb413d4aaf29f2decb938c1e6aa65b860af6219 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Wed, 5 Jan 2011 21:29:00 +0000 Subject: [PATCH] snd_mp3.c: fixed windows build. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@377 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/snd_mp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/snd_mp3.c b/Quake/snd_mp3.c index 79710677..3b114962 100644 --- a/Quake/snd_mp3.c +++ b/Quake/snd_mp3.c @@ -278,7 +278,7 @@ static int mp3_decode(snd_stream_t *stream, byte *buf, int len) do { x = (p->Synth.pcm.length - p->cursamp) * stream->info.channels; - donow = q_min(len, x); + donow = min(len, x); i = 0; while (i < donow) {