tyuah8
tyuah8
In my humble opinion, the code written to reduce the volume of the sounds here: [4567f26](https://github.com/dhewm/dhewm3/commit/4567f265392b5ab95a335f8896ff003a743990e4) ...is both unnecessary and incorrect, because all it does is move the problem to...
Very well, but perhaps you can make your changes optional so users have the option of doing what I just mentioned (using **output-limiter** = **true** instead of the hard-coded volume...
Yes it would help. I tested this, and it is counter-intuitive, but **false** is the default contrary to what the documentation says. You can test this very easily if you...
Well, it is your repo, so you decide what you would like to do, but what I am doing for my DOOM 3 is the following: - use **output-limiter** =...
I have the source code locally, but I original forked from [TTimo](https://github.com/TTimo/doom3.gpl) 12 years ago to work on something widescreen related. I recently went back to working on DOOM 3...
> Added customizable vertical health bars in form of HealthBarTypes. By default, technos use their own vanilla healthbars. Adding `CustomHealthBarType` changing health bar to this type. Can be applied to...
You may be able to do the following as a workaround: [https://github.com/dhewm/dhewm3/issues/494#issuecomment-1282397483](https://github.com/dhewm/dhewm3/issues/494#issuecomment-1282397483)
Does this fix handle corner cases such as **a Magnetron lifting a Chrono Miner out of a Service Depot while the Chrono Miner is being repaired?** Does the Chrono Miner...
The following is code I am using for my own project. ```cpp static bool IsOnline ( TechnoClass* This ) { if ( This->Deactivated || This->IsUnderEMP() ) return false; if (...
My... signature? You can just reference my username, which is **[tyuah8](https://github.com/tyuah8)**. I explain the bug fix and why it works in my previous post. Basically the bug fix works by...