bspinfo, bsputil: rename options -> bspinfo_options, bsputil_options
This commit is contained in:
parent
f86a5343fb
commit
e8d2a53255
|
|
@ -86,7 +86,7 @@ static void FindInfiniteChains(const mbsp_t &bsp)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
settings::common_settings options;
|
settings::common_settings bspinfo_options;
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
@ -104,7 +104,7 @@ int main(int argc, char **argv)
|
||||||
bspdata_t bsp;
|
bspdata_t bsp;
|
||||||
LoadBSPFile(source, &bsp);
|
LoadBSPFile(source, &bsp);
|
||||||
|
|
||||||
bsp.version->game->init_filesystem(source, options);
|
bsp.version->game->init_filesystem(source, bspinfo_options);
|
||||||
|
|
||||||
PrintBSPFileSizes(&bsp);
|
PrintBSPFileSizes(&bsp);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -458,7 +458,7 @@ static void FindFaces(const mbsp_t *bsp, const qvec3d &pos, const qvec3d &normal
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
settings::common_settings options;
|
settings::common_settings bsputil_options;
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
@ -480,7 +480,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
LoadBSPFile(source, &bspdata);
|
LoadBSPFile(source, &bspdata);
|
||||||
|
|
||||||
bspdata.version->game->init_filesystem(source, options);
|
bspdata.version->game->init_filesystem(source, bsputil_options);
|
||||||
|
|
||||||
ConvertBSPFormat(&bspdata, &bspver_generic);
|
ConvertBSPFormat(&bspdata, &bspver_generic);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue