From 694d174a6f33c0174be8a6ca92061f05182ae345 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 20 Dec 2022 15:43:39 +1000 Subject: [PATCH] bh --- Assets/changelog.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Assets/changelog.md b/Assets/changelog.md index f7a97c2282..b6ab2c8ed1 100644 --- a/Assets/changelog.md +++ b/Assets/changelog.md @@ -36,6 +36,7 @@ - fixed Debugger breakpoint crash with mGBA (#3287) - added warning dialog when running as Superuser/Administrator - fixed overlapping UI elements in `Config` > `Controllers...` when Windows UI scale is not 100% (#2605) + - fixed the autoselection of a movie when opening the Play Movie dialog - Linux port: - fixed various file pickers using case-sensitive file extensions - changed default Lua engine to "NLua+KopiLua" which doesn't seem to crash on normal Mono builds like the other one does @@ -1076,9 +1077,6 @@ fixes empty address fields being saved as `0x0`, see #3326 [140e340a8d Yoshi] Add Analyzer rule to warn of `FirstOrDefault` on list of structs -[8453c0e44d Yoshi] Fix exception on opening Play Movie dialog with multiple movies -fixes 9211007a1 - [bd58bde07c Yoshi] Hopefully block edge cases where global `GameInfo` is uninitialised `Game == null` conditions in `MainForm` ctor looked unreachable, so I changed them to `Game.IsNullInstance()` which is what I assume was intended, and added @@ -1123,10 +1121,6 @@ tipped me off to this [0309cdc4bc Yoshi] Disable MEN015 "Use Preferred Terms" (spellcheck) you're supposed to be able to configure this but I couldn't figure it out -[9211007a18 Yoshi] Fix bug in `PlayMovie.PreHighlightMovie` heuristics -for the record, the bug was that it had `_movieList[indices[0]]` in the loop -instead of `_movieList[indices[i]]` - [3f2a07e582 Yoshi] Fix remaining MA0098 code style warnings "Use indexer instead of LINQ methods" fixes 17df5673d, forgot I was in the middle of this when I pushed