mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 20:50:42 +00:00
disable the "don't download sounds with -nosound" feature until I get
things sorted
This commit is contained in:
parent
e639e5efc3
commit
c0561cd834
1 changed files with 2 additions and 2 deletions
|
@ -217,12 +217,12 @@ CL_CheckOrDownloadFile (const char *filename)
|
||||||
Con_Printf ("Refusing to download a path with ..\n");
|
Con_Printf ("Refusing to download a path with ..\n");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
if (!snd_initialized && strnequal ("sound/", filename, 6)) {
|
if (!snd_initialized && strnequal ("sound/", filename, 6)) {
|
||||||
// don't bother downloading sounds if we can't play them
|
// don't bother downloading sounds if we can't play them
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
QFS_FOpenFile (filename, &f);
|
QFS_FOpenFile (filename, &f);
|
||||||
if (f) { // it exists, no need to download
|
if (f) { // it exists, no need to download
|
||||||
Qclose (f);
|
Qclose (f);
|
||||||
|
|
Loading…
Reference in a new issue