remove the "poke frame" hotkey, as this is a very legacy feature, we have a whole tool for this now

This commit is contained in:
adelikat 2020-06-04 15:22:29 -05:00
parent ea6fd0ebad
commit d86aabb8b5
5 changed files with 0 additions and 27 deletions

View File

@ -191,7 +191,6 @@ namespace BizHawk.Client.Common
Bind("Movie", "MT Select None"),
Bind("Movie", "MT Increment Player"),
Bind("Movie", "MT Decrement Player"),
Bind("Movie", "Movie Poke"),
Bind("Movie", "Scrub Input"),
Bind("Tools", "RAM Watch"),

View File

@ -7,7 +7,6 @@
public bool MoviesOnDisk { get; }
public int MovieCompressionLevel { get; }
public bool VBAStyleMovieLoadState { get; }
public bool MoviePlaybackPokeMode { get; }
}
public class MovieConfig : IMovieConfig
@ -17,6 +16,5 @@
public bool MoviesOnDisk { get; set; }
public int MovieCompressionLevel { get; set; } = 2;
public bool VBAStyleMovieLoadState { get; set; }
public bool MoviePlaybackPokeMode { get; set; }
}
}

View File

@ -123,21 +123,6 @@ namespace BizHawk.Client.Common
LatchInputToUser();
ClearFrame();
}
else if (Settings.MoviePlaybackPokeMode)
{
LatchInputToUser();
var lg = Movie.LogGeneratorInstance(Global.InputManager.MovieOutputHardpoint);
if (!lg.IsEmpty)
{
LatchInputToUser();
Movie.PokeFrame(Movie.Emulator.Frame, Global.InputManager.MovieOutputHardpoint);
}
else
{
// Why, this was already done?
LatchInputToLog();
}
}
}
}
}

View File

@ -314,9 +314,6 @@ namespace BizHawk.Client.EmuHawk
case "MT Decrement Player":
MovieSession.MultiTrack.Decrement();
break;
case "Movie Poke":
ToggleModePokeMode();
break;
// Tools
case "RAM Watch":

View File

@ -2651,12 +2651,6 @@ namespace BizHawk.Client.EmuHawk
}
}
private void ToggleModePokeMode()
{
Config.Movies.MoviePlaybackPokeMode ^= true;
AddOnScreenMessage($"Movie Poke mode {(Config.Movies.MoviePlaybackPokeMode ? "enabled" : "disabled")}");
}
private void ToggleBackgroundInput()
{
Config.AcceptBackgroundInput ^= true;