]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.c
first part of fog changes: no longer use a complex glsl equation; modify the table...
[xonotic/darkplaces.git] / fs.c
diff --git a/fs.c b/fs.c
index 8f66fe884efe43babe3c4fa69d18fe18d0506c22..72475b697883d75bad6912f8205fd4b881ddd109 100644 (file)
--- a/fs.c
+++ b/fs.c
@@ -2169,7 +2169,7 @@ int FS_Seek (qfile_t* file, fs_offset_t offset, int whence)
                default:
                        return -1;
        }
-       if (offset < 0 || offset > (long) file->real_length)
+       if (offset < 0 || offset > file->real_length)
                return -1;
 
        // If we have the data in our read buffer, we don't need to actually seek