aboutsummaryrefslogtreecommitdiff
path: root/src/fixes.c
Commit message (Collapse)AuthorAgeFilesLines
* Prune some comments and tidy up other minor thingsGravatar Michael Smith 2023-06-101-1/+2
|
* Fix enabling and disabling addons in L4D1Gravatar Hayden K 2023-05-041-0/+5
|
* Unhide cl_showdemooverlayGravatar Hayden K 2023-05-041-1/+2
|
* Fix some miscellaneous stupid bugs and jankGravatar Michael Smith 2023-04-081-1/+1
| | | | Note: fixes.c was changed this year, so correct the copyright year too.
* Document more recent knowledge on the lag issueGravatar Michael Smith 2023-01-151-7/+6
|
* Enforce L4D2 FPS limit properly when loaded lateGravatar Michael Smith 2022-09-131-1/+2
| | | | Shoutouts to Lokki for accidentally reporting this bug.
* Allow cl_fullupdate as an attempted bug workaroundGravatar Michael Smith 2022-08-161-0/+20
|
* Properly solve load order issues via deferred initGravatar Michael Smith 2022-05-191-8/+0
|
* Rerun L4D1 console spam fix after config loadingGravatar Michael Smith 2022-05-121-0/+8
| | | | | | This was the simplest way I could think of to solve this issue. Thanks again Aciidz for pointing the issue out, and thanks Turtle Rock for shipping such a broken game.
* Allow lowering fps_max in the Left 4 DeadsGravatar Michael Smith 2022-05-041-0/+21
|
* Centralise engine access, add Portal FOV changerGravatar Michael Smith 2022-04-301-1/+0
| | | | | | | | | | | | | | | - A bunch of stuff is now defined in one header, engineapi.h - engineapi.c is responsible for setting up any interfaces/stuff that's used in more than one place - mkgamedata is pretty much rewritten and now supports nested conditionals - gamedata variables no longer have the gamedata_ prefix because it was just annoyingly long all the time - vcall macros are somewhat revamped and support dynamic (gamedata) indices - Portal 1 FOV can be set anywhere from 75-120 using fov_desired - tested in both the main versions currently used by runners - A few typos were also fixed ("intput," "writeable," "indexes")
* Fix a couple of bits of convar min/max brokennessGravatar Michael Smith 2022-04-261-0/+1
| | | | It's amazing how long these things can go unnoticed.
* Suppress L4D1 console spamGravatar Hayden 2022-04-251-0/+7
|
* Organise general and game-specific fixesGravatar Michael Smith 2022-04-251-27/+32
|
* Fix dark L4D2 rendering on Intel integrated GPUsGravatar Michael Smith 2022-04-251-0/+27
| | | | Thanks Aciidz for helping test this.
* Fix some egregious and sloppy mistakesGravatar Michael Smith 2022-04-061-2/+2
| | | | | | Thanks Aciidz and Bill for spotting these. Lesson (ostensibly) learned: Don't program while sleep-deprived!
* Fix a couple of errataGravatar Michael Smith 2022-03-191-4/+3
| | | | | | | 1. Why is it so hard to remember to bump the years aaaaaaaaaaaaaaaaaaaa 2. Aciidz wrote the mat_monitorgamma patch a while ago and it turns out he since found out it's not version-specific, so the comment was confusing.
* Fix L4D1 v1.0 mat_monitorgamma flags for QoLGravatar Hayden 2022-03-191-0/+11
| | | | Also unhide demo_interpolateview because yes.
* Spruce up text and fix some copyright yearsGravatar Michael Smith 2022-03-191-2/+2
| | | | Sometimes, you just want to Unicode.
* Fix Left 4 Dead 2 Survivors crashingGravatar Michael Smith 2022-01-171-1/+1
|
* Fix up more command flagsGravatar Michael Smith 2022-01-071-7/+21
| | | | | Mostly L4D leaderboard related stuff, but shouldn't really hurt anyone in other games.
* Fix mat_queue_mode *properly*Gravatar Michael Smith 2022-01-071-13/+16
| | | | | | | I hadn't realised this was all that newer versions did. Thanks Aciidz for testing the fix on earlier versions too and confirming that it really is this simple.
* Add a basic L4D2 multicore rendering workaroundGravatar Michael Smith 2021-12-271-0/+18
|
* Unhide useful commands and allow cheats in lobbiesGravatar Michael Smith 2021-12-261-0/+59
This is done through a new "fixes" file which will probably become one of those silly dumping grounds that every project has to have somewhere to put random miscellaneous crap in. These are mainly hidden in L4D2 but they just get unilaterally unhidden if they exist, just to be sure they're accessible. As a bonus, it turns out that unhiding a single cvar also allows us to set sv_cheats 1 in Left 4 Dead 2, bringing an end to the need to port- forward a listen server for co-op practice.