Joystick and keyboard should be the same

This commit is contained in:
simon.kagstrom 2010-02-28 18:51:57 +00:00
parent 83ce81145e
commit a167829510

View File

@ -255,8 +255,8 @@ void C64::VBlank(bool draw_frame)
joy_port_1 = 1;
// Poll joysticks
j1 = poll_joystick(joy_port_1);
j2 = poll_joystick(!joy_port_1);
j1 = poll_joystick(!joy_port_1);
j2 = poll_joystick(joy_port_1);
// Poll keyboard
TheDisplay->PollKeyboard(TheCIA1->KeyMatrix, TheCIA1->RevMatrix, &joykey);