Switch to using epoll on linux, because we can.
Rework q3bsp_mergedlightmaps as q3bsp_mergelightmaps. Now a boolean filling to the gpu's limit. Now also fills horizontally too. ftemaster now provides needpass info for sv_public 2 servers. fix (most?) ftemaster crashes. ftemaster now supports protocol name aliases (allowing for more friendly game names in its html). ftemaster now pings the servers from a different port. This should highlight/exclude servers that are unreachable for nat/firewall reasons. Fix memory leak from mvd recording. Servers should now cope better with ctrl-z and related fg/bg unix shell commands. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5638 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
62f2a380e1
commit
fe28099e68
30 changed files with 2126 additions and 1468 deletions
|
@ -327,6 +327,8 @@ cvar_t r_stereo_method = CVARFD("r_stereo_method", "0", CVAR_ARCHIVE, "Valu
|
|||
|
||||
extern cvar_t r_dodgytgafiles;
|
||||
extern cvar_t r_dodgypcxfiles;
|
||||
extern cvar_t r_keepimages;
|
||||
extern cvar_t r_ignoremapprefixes;
|
||||
extern cvar_t r_dodgymiptex;
|
||||
extern char *r_defaultimageextensions;
|
||||
extern cvar_t r_imageextensions;
|
||||
|
@ -865,6 +867,8 @@ void Renderer_Init(void)
|
|||
Cmd_AddCommand("sky", R_ForceSky_f); //QS compat
|
||||
Cmd_AddCommand("loadsky", R_ForceSky_f);//DP compat
|
||||
|
||||
Cvar_Register(&r_keepimages, GRAPHICALNICETIES);
|
||||
Cvar_Register(&r_ignoremapprefixes, GRAPHICALNICETIES);
|
||||
#ifdef IMAGEFMT_TGA
|
||||
Cvar_Register(&r_dodgytgafiles, "Hacky bug workarounds");
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue