]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/vehicles/all.qc
Lint
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / vehicles / all.qc
index f0316ab1fac7f2da65c7269dcd43b56b345ff060..923ed4e5bd4f2e977a92e0ef258db313fafdd4b9 100644 (file)
@@ -48,9 +48,9 @@ STATIC_INIT(vehicles_common_initialize)
 
 entity get_vehicleinfo(int id)
 {
-       if (id < VEH_FIRST || id > VEH_LAST) return VEH_NULL;
+       if (id < VEH_FIRST || id > VEH_LAST) return VEH_Null;
        entity m = vehicle_info[id];
-       return m ? m : VEH_NULL;
+       return m ? m : VEH_Null;
 }
 
 #endif