![]() |
|
Input Syntax Weirdness - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Support (https://forums.dolphin-emu.org/Forum-support) +--- Thread: Input Syntax Weirdness (/Thread-input-syntax-weirdness) |
Input Syntax Weirdness - Lucario - 12-18-2015 I'm not sure why not all the parameters are working when there is & AND after | OR or + ADD (what's the difference lol) Code: Input1 & Input2 | Input3 & Input4Only Input3 & Input4 works Code: Input1 | Input2 | Input3 & Input4Input2 and Input4 or Input3 and Input4 works Input1 never work. Code: Input1 & Input2 | Input3 & !Input4When adding ! NOT after & AND, parameters containing these will allow another parameter with & AND to work. What's going on? Any way I can achieve similar to this Code: Input1 & Input2 | Input3 & Input4? RE: Input Syntax Weirdness - skid - 12-19-2015 I think you need parenthesis around the parameters. e.g. Code: (Input1 & Input2) | (Input3 & Input4)i.e. you have to press both Input1 and Input2 at the same time or alternatively Input3 and Input4 at the same time for it to register. RE: Input Syntax Weirdness - Lucario - 12-19-2015 AHH THANKS! I didn't know we can use parentheses. (I'll add that to Dolphin Wiki) |