- Mar 29, 2024
-
-
Alu Folie authored
The asm code for the software renderer is very old and unstable which leads to alot of random segfaults when using it, so disable it by default modern GCC is very good at optimizing non asm code anyways, so theres no realy benefit in keeping those anyways
-
Sal authored
Fix segmentation faults on 32-bit ARM devices running GNU/Linux See merge request KartKrew/Kart-Public!332
-
Sal authored
Fix possible segfault for cvars registered from lua with flag CV_CALL See merge request KartKrew/Kart-Public!328
-
Sal authored
Fix FreeBSD build errors See merge request KartKrew/Kart-Public!333
-
- Oct 24, 2023
-
-
Hanicef authored
-
- Oct 19, 2023
-
-
Christian Angel authored
Fix segmentation faults on ODROID-XU3/XU4 running GNU/Linux, and probably other 32-bit ARM devices like older Raspberry Pis
-
- Aug 14, 2023
-
-
James R. authored
Fix ban.txt crashing game See merge request KartKrew/Kart-Public!329
-
James R. authored
- Fix compile with msvcrt - Fix compile with SDL 2.28.2
-
- Aug 05, 2023
-
-
Indev authored
-
- Aug 03, 2023
-
-
James R. authored
glibc 2.38 added strlcpy and strlcat.
-
- Jul 29, 2023
-
-
Indev authored
-
- Dec 20, 2022
-
-
Sal authored
Sound refactor backport Closes #22 See merge request KartKrew/Kart-Public!325
-
Sal authored
Prevent multiple nodes fopen-ing the same file See merge request KartKrew/Kart-Public!326
-
- Dec 19, 2022
-
-
Sal authored
Makes it act similarly to before if only 1 node needs the file.
-
Sal authored
Instead of FILE pointer stored in the transfer, they go in their own array. The number of nodes accessing a file is kept track of, and it's only fully closed after everyone who needs it is done with it. Means that will unfortunately do a lot more seeking, but multiple users can download the same file now without it being implementation specific.
-
Sal authored
-
toaster authored
Increase range of anti-grief cvar Closes #20 See merge request KartKrew/Kart-Public!327
-
Sal authored
-
- Dec 17, 2022
-
-
toaster authored
Consistently free G_BuildMapTitle See merge request KartKrew/Kart-Public!323
-
toaster authored
Minor refactor: Handle *sep entirely within S_AdjustSoundParams, instead of having a component partly outside.
-
toaster authored
-
toaster authored
-
- Dec 15, 2022
-
-
Sal authored
Fix gamepad axis brake behaviour See merge request KartKrew/Kart-Public!324
-
toaster authored
- It was actually ACCELERATION axis input that was predominantly broken! - It was inexplicably slightly under double what it should be (98 instead of the digital value of 50), which meant brake analog input struggled to dampen it. - Analog brake deceleration also gets a slight buff, from 24 to 25 (previously off from the digital value of 25 due to integer division rounding) - Remove a pointless, always-true condition for brake handling. - Checked whether accel was held down OR whether `cmd->forwardmove` was less than or equal 0... - But further up the same function, `cmd` was invariably overwritten with a blank `I_BaseTiccmd`! - Therefore, `cmd->forwardmove` would always equal 0, and the `forwardmove` subtraction would always occur.
-
toaster authored
-
- Nov 12, 2022
-
-
Sal authored
Use SDL version of executable icon at runtime on macOS See merge request KartKrew/Kart-Public!321
-
Sal authored
Fix game trying to load nothing when music and sound files are not present. See merge request KartKrew/Kart-Public!322
-
- Nov 04, 2022
- Nov 02, 2022
-
-
Lach authored
-
- Nov 01, 2022
-
-
SteelT authored
So that it actually falls back to direct downloading
-
-
SteelT authored
In cases of where the file mismatches from what the server expects, it will fall back to direct downloading of the file.
-
toaster authored
- Fixed off by one in Got_RequestFilePak that could cause correct, maximised-space-usage packets to be rejected - More verbose printing for aborting send files - More verbose printing for client request files (behind a define for troubleshooting)
-
toaster authored
Skips resync, clearticcmd, and sendtics, since all they're doing with no nodes in game is writing the same value to the same address again and again
-
toaster authored
-
toaster authored
-
Eidolon authored