N64 - Fix input display for analog controls, oops
This commit is contained in:
parent
e41e878eb5
commit
1f80f0e739
|
@ -419,6 +419,10 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
val = -127;
|
||||
}
|
||||
else
|
||||
{
|
||||
val = (int)GetBaseFloat("P" + player + " " + name);
|
||||
}
|
||||
}
|
||||
else if (name == "Y Axis")
|
||||
{
|
||||
|
@ -430,6 +434,10 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
val = 127;
|
||||
}
|
||||
else
|
||||
{
|
||||
val = (int)GetBaseFloat("P" + player + " " + name);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue