mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
Really fix the networking joystick issue, networking seems to work well
now
This commit is contained in:
parent
bbc30c590d
commit
25605859e4
@ -273,6 +273,14 @@ void C64::VBlank(bool draw_frame)
|
|||||||
TheCIA1->Joystick1 = which;
|
TheCIA1->Joystick1 = which;
|
||||||
TheCIA1->Joystick2 = which;
|
TheCIA1->Joystick2 = which;
|
||||||
}
|
}
|
||||||
|
else if (this->network_connection_type == MASTER)
|
||||||
|
{
|
||||||
|
/* The other comes from the network */
|
||||||
|
if (ThePrefs.JoystickSwap)
|
||||||
|
TheCIA1->Joystick1 = j1;
|
||||||
|
else
|
||||||
|
TheCIA1->Joystick2 = j2;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
TheCIA1->Joystick1 = j1;
|
TheCIA1->Joystick1 = j1;
|
||||||
|
Loading…
Reference in New Issue
Block a user