mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-13 00:24:10 +00:00
Thanks to Lakitu7 for pointing this out.
This commit is contained in:
parent
c923872ca2
commit
4713fa4f79
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ static fileHandle_t FS_HandleForFile(void) {
|
||||||
|
|
||||||
static FILE *FS_FileForHandle( fileHandle_t f ) {
|
static FILE *FS_FileForHandle( fileHandle_t f ) {
|
||||||
if ( f < 0 || f > MAX_FILE_HANDLES ) {
|
if ( f < 0 || f > MAX_FILE_HANDLES ) {
|
||||||
Com_Error( ERR_DROP, "FS_FileForHandle: out of reange" );
|
Com_Error( ERR_DROP, "FS_FileForHandle: out of range" );
|
||||||
}
|
}
|
||||||
if (fsh[f].zipFile == qtrue) {
|
if (fsh[f].zipFile == qtrue) {
|
||||||
Com_Error( ERR_DROP, "FS_FileForHandle: can't get FILE on zip file" );
|
Com_Error( ERR_DROP, "FS_FileForHandle: can't get FILE on zip file" );
|
||||||
|
|
Loading…
Reference in a new issue