fix some compile issues (errors and warnings). sdl, ode, vulkan.
fix q2bsp textures. fix some vulkan validation issues. MOVE_OTHERONLY is now an official feature (replacing MOVE_ONLYENT which is now removed, same functionality, better behaved behaviour). network up edited brushes on initial connect. still needs more work for entity editing, but should otherwise be okay for now. add sys_browserredirect console command for emscripten builds (can be used to trigger window redirections - including download requests) git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5001 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
27a59a0cbc
commit
934a97c53e
65 changed files with 9051 additions and 4750 deletions
|
@ -832,10 +832,11 @@ void Sys_SendKeyEvents(void)
|
|||
#if SDL_MAJOR_VERSION >= 2
|
||||
//actually, joysticks *should* work with sdl1 as well, but there are some differences (like no hot plugging, I think).
|
||||
case SDL_JOYAXISMOTION:
|
||||
J_JoystickAxis(event.jaxis.which, event.jaxis.axis, event.jaxis.value);
|
||||
break;
|
||||
// case SDL_JOYBALLMOTION:
|
||||
// case SDL_JOYHATMOTION:
|
||||
break;
|
||||
// break;
|
||||
case SDL_JOYBUTTONDOWN:
|
||||
case SDL_JOYBUTTONUP:
|
||||
J_JoystickButton(event.jbutton.which, event.jbutton.button, event.type==SDL_CONTROLLERBUTTONDOWN);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue