From 88589cb59bcfe6a48c40f93caa11a6ec0ccf74e4 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 31 Oct 2016 19:08:31 -0400 Subject: [PATCH] Make one small tweak to Famicom Basic keyboard based on the current state of the NESDEV docs, don't know if it's correct --- .../Consoles/Nintendo/NES/NESControllers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs index 66166397c3..e5bf596802 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs @@ -881,13 +881,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { active = s.OUT2 != 0; column = s.OUT1; - if (s.OUT1 > s.OUT1old) + if (s.OUT1 < s.OUT1old) { row++; if (row == 10) row = 0; } - if (s.OUT0 != 0) // should this be edge triggered? + if (s.OUT0 != 0) row = 0; }