Fix input display during lag frames for NES games
This commit is contained in:
parent
a4032aff51
commit
839a247bba
|
@ -326,8 +326,8 @@ namespace BizHawk.MultiClient
|
|||
s = new StringBuilder(Global.GetOutputControllersAsMnemonic());
|
||||
else
|
||||
s = new StringBuilder(Global.MovieSession.Movie.GetInputFrame(Global.Emulator.Frame - 1));
|
||||
s.Replace(".", " ");
|
||||
s.Replace("|", "");
|
||||
s.Replace(".", " ").Replace("|", "").Replace("l", ""); //If l is ever a mnemonic this will squash it.
|
||||
|
||||
return s.ToString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue