TAStudio: Fix deletion crashing when deleting invalid indexes ()

* TAStudio: Fix deletion crashing when deleting invalid indexes

The problem occurs when trying to delete a selection where some of the frames were valid, but the last displayed line (which is currently an extra non-input frame) was in the selection.

* LINQ alignment tweak
This commit is contained in:
RetroEdit 2020-08-26 13:18:24 +00:00 committed by GitHub
parent 956b71060e
commit 00f8129b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
src/BizHawk.Client.Common/movie/tasproj

View File

@ -114,7 +114,10 @@ namespace BizHawk.Client.Common
{
// Separate the given frames into contiguous blocks
// and process each block independently
List<int> framesToDelete = frames.OrderBy(fr => fr).ToList();
List<int> framesToDelete = frames
.Where(fr => fr >= 0 && fr < InputLogLength)
.OrderBy(fr => fr)
.ToList();
// f is the current index for framesToDelete
int f = 0;
int numDeleted = 0;