C64: Fix 4 in 1 (pot's should return 0xFF instead of 0 when not connected.)

This commit is contained in:
alyosha-tas 2018-03-13 13:00:56 -04:00
parent a751131787
commit c4497b7c76
1 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
namespace BizHawk.Emulation.Cores.Computers.Commodore64
using System;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
public sealed partial class Motherboard
{
@ -155,12 +157,12 @@
private int Sid_ReadPotX()
{
return 0;
return 255;
}
private int Sid_ReadPotY()
{
return 0;
return 255;
}
private int Vic_ReadMemory(int addr)