Tastudio - Fix autoload
This commit is contained in:
parent
bbc84471d8
commit
6437203236
|
@ -973,7 +973,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
//This method is called everytime the Changes property is toggled on a TasMovie instance.
|
||||
private void TasMovie_OnPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||
{
|
||||
if (_currentTasMovie.Changes)
|
||||
if (_currentTasMovie != null && _currentTasMovie.Changes)
|
||||
{
|
||||
|
||||
Text += "*";
|
||||
|
|
Loading…
Reference in New Issue