Fix Animation Editor not saving the file name

This commit is contained in:
anysad 2024-08-05 13:29:42 +03:00
parent 9b483de1da
commit 8bed49eb4b

View file

@ -592,7 +592,7 @@ class DebugBoundingState extends FlxState
_file.addEventListener(Event.COMPLETE, onSaveComplete);
_file.addEventListener(Event.CANCEL, onSaveCancel);
_file.addEventListener(IOErrorEvent.IO_ERROR, onSaveError);
_file.save(saveString,);
_file.save(saveString, fileName);
}
}