Can jump through hexen2 windows now, changing h2 classes no longer kills the server. Provided Sys_EnumerateFiles for win32+unix targets, other targets will now spam warnings, as its kinda needed for fs_cache (which is default).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3578 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
1f621ac18c
commit
6d8e3b01a9
14 changed files with 867 additions and 73 deletions
|
@ -228,11 +228,6 @@ int mouse_x, mouse_y;
|
|||
void ResetFrameBuffers(void);
|
||||
#endif
|
||||
|
||||
#ifdef RGLQUAKE
|
||||
extern int glwidth;
|
||||
extern int glheight;
|
||||
#endif
|
||||
|
||||
void Sys_SendKeyEvents(void)
|
||||
{
|
||||
SDL_Event event;
|
||||
|
@ -251,10 +246,10 @@ void Sys_SendKeyEvents(void)
|
|||
case SDL_VIDEORESIZE:
|
||||
switch(qrenderer)
|
||||
{
|
||||
#ifdef RGLQUAKE
|
||||
#ifdef GLQUAKE
|
||||
case QR_OPENGL:
|
||||
glwidth = event.resize.w;
|
||||
glheight = event.resize.h;
|
||||
vid.pixelwidth = event.resize.w;
|
||||
vid.pixelheight = event.resize.h;
|
||||
break;
|
||||
#endif
|
||||
#ifdef SWQUAKE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue