is this legal?

This commit is contained in:
Morilli 2023-08-07 15:08:16 +02:00
parent fe845ce8ef
commit f14a7ed426
1 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,8 @@ namespace BizHawk.Client.Common
{ {
if (line.StartsWith('|')) if (line.StartsWith('|'))
{ {
Log.Add(line); string previous = Log.Count > 0 ? Log[Log.Count - 1] : null;
Log.Add(line == previous ? previous : line);
} }
else if (line.StartsWith("Frame ")) else if (line.StartsWith("Frame "))
{ {