diff options
author | zakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-06-17 04:44:36 +0000 |
---|---|---|
committer | zakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-06-17 04:44:36 +0000 |
commit | d2d5d06226fdf244d298068d18a2a3aa390e5c26 (patch) | |
tree | f5c2dfe244b10e273980e4fcd0f044f167395a54 /code | |
parent | 552953540cbb8065160c6670e8655b8d4279c286 (diff) | |
download | ioquake3-aero-d2d5d06226fdf244d298068d18a2a3aa390e5c26.tar.gz ioquake3-aero-d2d5d06226fdf244d298068d18a2a3aa390e5c26.zip |
Thanks to Lakitu7 for pointing this out.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1388 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/files.c b/code/qcommon/files.c index dcdb7bc..64fe8d5 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -381,7 +381,7 @@ static fileHandle_t FS_HandleForFile(void) { static FILE *FS_FileForHandle( fileHandle_t f ) { 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) { Com_Error( ERR_DROP, "FS_FileForHandle: can't get FILE on zip file" ); |