]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/file.qh
Assert harder
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / file.qh
index f732bfe2c1c53e3d2922a6b3e744cf5c30148ef8..87d1460250a1c007b5ebe0c23103208093fbc8cf 100644 (file)
@@ -3,11 +3,10 @@
 
 bool fexists(string f)
 {
-    int fh = fopen(f, FILE_READ);
-    if (fh < 0)
-        return false;
-    fclose(fh);
-    return true;
+       int fh = fopen(f, FILE_READ);
+       if (fh < 0) return false;
+       fclose(fh);
+       return true;
 }
 
 #endif