some more typos
This commit is contained in:
parent
04b6b2baa0
commit
1b428b49ae
|
@ -475,7 +475,7 @@ namespace BizHawk.MultiClient
|
|||
Global.Emulator.FrameAdvance(true); //TODO: Do these things need to happen on (false) as well? Think about it
|
||||
RamWatch1.UpdateValues();
|
||||
RamSearch1.UpdateValues();
|
||||
InputLog.GetMneumonic(); //TODO: log to input log or user choice, if user choice & playback don't log!
|
||||
InputLog.GetMnemonic(); //TODO: log to input log or user choice, if user choice & playback don't log!
|
||||
}
|
||||
|
||||
public void CheckHotkeys()
|
||||
|
@ -637,7 +637,7 @@ namespace BizHawk.MultiClient
|
|||
Global.Emulator.FrameAdvance(!throttle.skipnextframe);
|
||||
RamWatch1.UpdateValues();
|
||||
RamSearch1.UpdateValues();
|
||||
InputLog.GetMneumonic();
|
||||
InputLog.GetMnemonic();
|
||||
}
|
||||
|
||||
if(genSound)
|
||||
|
|
|
@ -40,16 +40,18 @@ namespace BizHawk.MultiClient
|
|||
return MovieMode;
|
||||
}
|
||||
|
||||
public void GetMneumonic()
|
||||
public void GetMnemonic()
|
||||
{
|
||||
if (MovieMode == MOVIEMODE.RECORD)
|
||||
Log.AddFrame(Global.Emulator.GetControllersAsMnemonic());
|
||||
}
|
||||
|
||||
public void AddMovieRecord()
|
||||
//Movie editing tools may like to have something like this
|
||||
public void AddMovieRecord(string record)
|
||||
{
|
||||
//TODO: validate input
|
||||
//Format into string acceptable by MovieLog
|
||||
Log.AddFrame(record);
|
||||
}
|
||||
|
||||
public void WriteMovie()
|
||||
|
|
Loading…
Reference in New Issue