From 064015cc969f587f2ea1309f465c3477e7bef1a7 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 3 Sep 2004 06:26:27 +0000 Subject: [PATCH] added -novorbis commandline option to allow disabling ogg vorbis support even if the library is present git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4425 d7cf8633-e32d-0410-b094-e92efae38249 --- snd_ogg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/snd_ogg.c b/snd_ogg.c index ceab9efb..989903fe 100644 --- a/snd_ogg.c +++ b/snd_ogg.c @@ -298,6 +298,9 @@ qboolean OGG_OpenLibrary (void) if (vf_dll) return true; + if (COM_CheckParm("-novorbis")) + return false; + #ifdef WIN32 dllname = "vorbisfile.dll"; #else -- 2.39.2