From 2eba9e0c71b831290d2d64b74eea4c69c60a98c3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 30 Mar 2012 23:42:09 +0000 Subject: [PATCH] Atari - console buttons hooked up to mnemonics (input display and movie recording now work) --- BizHawk.MultiClient/movie/InputAdapters.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.MultiClient/movie/InputAdapters.cs b/BizHawk.MultiClient/movie/InputAdapters.cs index 0f330b05af..d5f54d2c77 100644 --- a/BizHawk.MultiClient/movie/InputAdapters.cs +++ b/BizHawk.MultiClient/movie/InputAdapters.cs @@ -197,6 +197,7 @@ namespace BizHawk.MultiClient if (ControlType == "Atari 2600 Basic Controller") { input.Append(IsBasePressed("Reset") ? "r" : "."); + input.Append(IsBasePressed("Select") ? "s" : "."); } if (ControlType == "NES Controller") { @@ -409,6 +410,8 @@ namespace BizHawk.MultiClient if (ControlType == "Atari 2600 Basic Controller") { Force("Reset", mnemonic[1] != '.' && mnemonic[1] != '0'); + Force("Select", mnemonic[2] != '.' && mnemonic[2] != '0'); + start = 4; } for (int player = 1; player <= Global.PLAYERS[ControlType]; player++) {