Simplify log class even more

This commit is contained in:
adelikat 2014-06-14 21:41:11 +00:00
parent 70baceb6c8
commit 1cefb2dd95
5 changed files with 9 additions and 14 deletions

View File

@ -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;

View File

@ -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;
}

View File

@ -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)
{

View File

@ -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;

View File

@ -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);
}
}