saturnus - wire up the needed analogs for 3d controller
This commit is contained in:
parent
77e3f9acb3
commit
7f83f311f9
|
@ -224,6 +224,21 @@ namespace BizHawk.Emulation.Cores.Waterbox
|
|||
// ret.AxisRanges.Add(new ControllerDefinition.AxisRange(0, ????, ????, true));
|
||||
// break;
|
||||
}
|
||||
case InputType.ButtonAnalog:
|
||||
{
|
||||
ret.AxisControls.Add(name);
|
||||
ret.CategoryLabels[name] = category;
|
||||
ret.AxisRanges.Add(new ControllerDefinition.AxisRange(
|
||||
0, 0, 0xffff, false
|
||||
));
|
||||
_thunks.Add((c, b) =>
|
||||
{
|
||||
var val = c.AxisValue(name);
|
||||
b[byteStart] = (byte)val;
|
||||
b[byteStart + 1] = (byte)(val >> 8);
|
||||
});
|
||||
break;
|
||||
}
|
||||
// TODO: wire up statuses to something (not controller, of course)
|
||||
default:
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue