Zwip-Zwap Zapony
Member
In both the public "next" (tested) and "master" branches of the source code, as well as the released compiled 2.1.14 (tested), the console variable FLIPCAM2... exists, but is not initialized, and thus can't be used or set, meaning player 2's third-person camera in split-screen can't flip in reverse gravity (without Lua mods).
This error can be fixed in the file src/r_main.c. For "next", it's at line 1390. For "master", it's at line 1403. In both cases, duplicating the line "CV_RegisterVar(&cv_flipcam);" and adding "2" after "flipcam" should fix it. I have tried this, successfully, with the "next" branch, however I have not tried with the "master" branch.
As I am unable to sign up properly on GitLab (the confirmation e-mail hasn't been sent after a month), I can't make a merge request, and as such I've come here instead. I don't know whether this will break net-compatibility at all (due to slightly offset console variables after adding a variable in the middle), but I don't really see how it would. But be careful with fixing this for the "master" branch.
Yes, I know, lack of support for a feature is not a bug... but there is support for the feature, the feature just isn't initialized due to a missing line, so I consider it a bug. Apologies if it doesn't count as one.
This error can be fixed in the file src/r_main.c. For "next", it's at line 1390. For "master", it's at line 1403. In both cases, duplicating the line "CV_RegisterVar(&cv_flipcam);" and adding "2" after "flipcam" should fix it. I have tried this, successfully, with the "next" branch, however I have not tried with the "master" branch.
As I am unable to sign up properly on GitLab (the confirmation e-mail hasn't been sent after a month), I can't make a merge request, and as such I've come here instead. I don't know whether this will break net-compatibility at all (due to slightly offset console variables after adding a variable in the middle), but I don't really see how it would. But be careful with fixing this for the "master" branch.
Yes, I know, lack of support for a feature is not a bug... but there is support for the feature, the feature just isn't initialized due to a missing line, so I consider it a bug. Apologies if it doesn't count as one.
Last edited by a moderator: