Simplify log class even more
This commit is contained in:
parent
70baceb6c8
commit
1cefb2dd95
|
@ -153,14 +153,14 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (!Global.Config.VBAStyleMovieLoadState)
|
||||
{
|
||||
_log.TruncateMovie(stateFramei);
|
||||
_log.Truncate(stateFramei);
|
||||
}
|
||||
}
|
||||
else if (stateFramei > _log.Count) // Post movie savestate
|
||||
{
|
||||
if (!Global.Config.VBAStyleMovieLoadState)
|
||||
{
|
||||
_log.TruncateMovie(_log.Count);
|
||||
_log.Truncate(_log.Count);
|
||||
}
|
||||
|
||||
_mode = Moviemode.Finished;
|
||||
|
|
|
@ -101,7 +101,7 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (Global.Emulator.Frame < _log.Count)
|
||||
{
|
||||
_log.TruncateMovie(Global.Emulator.Frame);
|
||||
_log.Truncate(Global.Emulator.Frame);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -114,7 +114,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void Truncate(int frame)
|
||||
{
|
||||
_log.TruncateMovie(frame);
|
||||
_log.Truncate(frame);
|
||||
Changes = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -22,12 +22,7 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
}
|
||||
|
||||
public void DeleteFrame(int frame)
|
||||
{
|
||||
this.RemoveAt(frame);
|
||||
}
|
||||
|
||||
public void TruncateMovie(int frame)
|
||||
public void Truncate(int frame)
|
||||
{
|
||||
if (frame < this.Count)
|
||||
{
|
||||
|
|
|
@ -156,14 +156,14 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (!Global.Config.VBAStyleMovieLoadState)
|
||||
{
|
||||
_log.TruncateMovie(stateFramei);
|
||||
_log.Truncate(stateFramei);
|
||||
}
|
||||
}
|
||||
else if (stateFramei > _log.Count) // Post movie savestate
|
||||
{
|
||||
if (!Global.Config.VBAStyleMovieLoadState)
|
||||
{
|
||||
_log.TruncateMovie(_log.Count);
|
||||
_log.Truncate(_log.Count);
|
||||
}
|
||||
|
||||
_mode = Moviemode.Finished;
|
||||
|
|
|
@ -142,7 +142,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void Truncate(int frame)
|
||||
{
|
||||
_log.TruncateMovie(frame);
|
||||
_log.Truncate(frame);
|
||||
_changes = true;
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (Global.Emulator.Frame < _log.Count)
|
||||
{
|
||||
_log.TruncateMovie(Global.Emulator.Frame);
|
||||
_log.Truncate(Global.Emulator.Frame);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue