bspfile.cc: fix handling of bsp format conversion
needs to return false so WriteBSPFile can upgrade to an extended limits format
This commit is contained in:
parent
d6a17d022c
commit
d0ea010acb
|
|
@ -1180,6 +1180,7 @@ bool ConvertBSPFormat(bspdata_t *bspdata, const bspversion_t *to_version)
|
|||
}
|
||||
catch (std::overflow_error e) {
|
||||
LogPrint("LIMITS EXCEEDED ON {}\n", e.what());
|
||||
return false;
|
||||
}
|
||||
|
||||
bspdata->version = to_version;
|
||||
|
|
|
|||
Loading…
Reference in New Issue