diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.MotherboardInterface.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.MotherboardInterface.cs index 71b0e0a029..37b606fb74 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.MotherboardInterface.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.MotherboardInterface.cs @@ -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)