Moritz Bender
Moritz Bender
I don't think we need to have this. What you're describing is already possible on a real controller, albeit much more annoying to actually execute: Press right on the d-pad,...
This would probably be nice, but I'm not sure if it's necessary to handle this in a special way. There are most likely other cases where supporting L+R by default...
As mentioned in #3453, this could perhaps be done by removing the `UdlrControllerAdapter` and replacing it with some kind of linked button concept similar to the existing `AxisConstraint` class, but...
@Screwtapello what's your opinion on the following diff? ```diff diff --git a/bsnes/sfc/cpu/timing.cpp b/bsnes/sfc/cpu/timing.cpp index e443e5a5..ab82c541 100644 --- a/bsnes/sfc/cpu/timing.cpp +++ b/bsnes/sfc/cpu/timing.cpp @@ -205,6 +205,8 @@ auto CPU::joypadEdge() -> void { //it...
Implementing more conditions that mesen uses: ```diff diff --git a/bsnes/sfc/cpu/timing.cpp b/bsnes/sfc/cpu/timing.cpp index e443e5a5..02d64d87 100644 --- a/bsnes/sfc/cpu/timing.cpp +++ b/bsnes/sfc/cpu/timing.cpp @@ -205,7 +205,9 @@ auto CPU::joypadEdge() -> void { //it is not...
Maybe the documentation should be fixed to not say the same as the `set()` function when it does something completely different?
@YoshiRulz the problem isn't the second sentence, but the first: `sets the given analog controls to their provided values for the current frame.` ... yes, but also forever, unlike `set`,...
Sure, that works. But I do wonder whether this API was consciously designed this way or whether it *should* have worked like `joypad.set`. On a related note, `OverrideAdapter` supports axis...
> Tool settings can't be deserialized yet > > ``` > System.ArgumentException > HResult=0x80070057 > Message=Object of type 'System.Text.Json.JsonElement' cannot be converted to type 'BizHawk.Client.EmuHawk.LuaConsole+LuaConsoleSettings'. > Source=mscorlib > StackTrace: >...
^ That first error should be fixed with 16a8e923d4834de396df2a899ac8dfec3e0da3d1, and the second is due to an incorrect config generated from a commit without the TypeConverter handling, so you'll need to...