mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 16:50:48 +00:00
locs and teamplay: Minor cleanup. (locisgz!? Gone!)
gl_dyn_part.c: Minor cleanup.
This commit is contained in:
parent
e9f3f3fa37
commit
33b135f3dd
4 changed files with 38 additions and 56 deletions
|
@ -367,20 +367,14 @@ locs_loc (void)
|
|||
|
||||
if (stricmp(Cmd_Argv(1),"save") == 0) {
|
||||
if (Cmd_Argc () == 2) {
|
||||
i = locisgz;
|
||||
locisgz = 0;
|
||||
locs_save(locfile);
|
||||
locisgz = i;
|
||||
locs_save(locfile, false);
|
||||
} else
|
||||
Con_Printf("loc save :saves locs from memory into a .loc file\n");
|
||||
}
|
||||
|
||||
if (stricmp(Cmd_Argv(1),"zsave") == 0) {
|
||||
if (Cmd_Argc () == 2) {
|
||||
i = locisgz;
|
||||
locisgz = 1;
|
||||
locs_save(locfile);
|
||||
locisgz = i;
|
||||
locs_save(locfile, true);
|
||||
} else
|
||||
Con_Printf("loc save :saves locs from memory into a .loc file\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue