Tastudio - Fix autoload

This commit is contained in:
adelikat 2014-08-27 21:18:53 +00:00
parent bbc84471d8
commit 6437203236
1 changed files with 1 additions and 1 deletions

View File

@ -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 += "*";