mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 20:51:31 +00:00
clean up model list show
This commit is contained in:
parent
70b0b1c77a
commit
8ecef62a5d
7 changed files with 8 additions and 17 deletions
12
README.md
12
README.md
|
@ -9,12 +9,7 @@ Have a look at the yquake2 repository for the "normal" Yamagi Quake II:
|
|||
https://github.com/yquake2/yquake2
|
||||
|
||||
State:
|
||||
* GL1:
|
||||
* base1: no known issies
|
||||
* base2: no known issies
|
||||
* q64/outpost: no known issies
|
||||
* mguhub: loaded, sometimes broken logic for surface fall in next maps
|
||||
* GL3/GLES3:
|
||||
* GL1/GL3/GLES3/VK:
|
||||
* base1: no known issies
|
||||
* base2: no known issies
|
||||
* q64/outpost: no known issies
|
||||
|
@ -29,11 +24,6 @@ State:
|
|||
* base2: broken wall light
|
||||
* q64/outpost: no known issies
|
||||
* mguhub: broken wall light, sometimes broken logic for surface fall in next maps
|
||||
* VK:
|
||||
* base1: no known issies
|
||||
* base2: no known issies
|
||||
* q64/outpost: no known issies
|
||||
* mguhub: loaded, sometimes broken logic for surface fall in next maps
|
||||
|
||||
Monsters:
|
||||
* incorrect weapon effect for Shambler
|
||||
|
|
|
@ -103,7 +103,7 @@ Mod_Modellist_f(void)
|
|||
continue;
|
||||
}
|
||||
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %f #%d\n",
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %.2f #%d\n",
|
||||
mod->extradatasize, mod->name, in_use, mod->radius, mod->numsubmodels);
|
||||
total += mod->extradatasize;
|
||||
}
|
||||
|
|
|
@ -104,7 +104,7 @@ GL3_Mod_Modellist_f(void)
|
|||
continue;
|
||||
}
|
||||
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %f #%d\n",
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %.2f #%d\n",
|
||||
mod->extradatasize, mod->name, in_use, mod->radius, mod->numsubmodels);
|
||||
total += mod->extradatasize;
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ GL4_Mod_Modellist_f(void)
|
|||
continue;
|
||||
}
|
||||
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %f #%d\n",
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %.2f #%d\n",
|
||||
mod->extradatasize, mod->name, in_use, mod->radius, mod->numsubmodels);
|
||||
total += mod->extradatasize;
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ Mod_Modellist_f(void)
|
|||
continue;
|
||||
}
|
||||
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %f #%d\n",
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %.2f #%d\n",
|
||||
mod->extradatasize, mod->name, in_use, mod->radius, mod->numsubmodels);
|
||||
total += mod->extradatasize;
|
||||
}
|
||||
|
|
|
@ -1026,7 +1026,7 @@ Mod_Modellist_f (void)
|
|||
|
||||
if (!mod->name[0])
|
||||
continue;
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %f #%d\n",
|
||||
R_Printf(PRINT_ALL, "%8i : %s %s r: %.2f #%d\n",
|
||||
mod->extradatasize, mod->name, in_use, mod->radius, mod->numsubmodels);
|
||||
total += mod->extradatasize;
|
||||
}
|
||||
|
|
|
@ -1748,7 +1748,8 @@ Cmd_ListEntities_f(edict_t *ent)
|
|||
if (print)
|
||||
{
|
||||
/* We use dprintf() because cprintf() may flood the server... */
|
||||
gi.dprintf("%s: %f %f %f\n", cur->classname, cur->s.origin[0], cur->s.origin[1], cur->s.origin[2]);
|
||||
gi.dprintf("%s: %.3f %.3f %.3f\n",
|
||||
cur->classname, cur->s.origin[0], cur->s.origin[1], cur->s.origin[2]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue