Lua Console - fix Session saving saving the session filename instead of the script filename, fixes #2400

This commit is contained in:
adelikat 2020-09-27 09:48:45 -05:00
parent 725cee8b62
commit ad9a04d918
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ namespace BizHawk.Client.Common
sb
.Append(file.Enabled ? "1" : "0")
.Append(' ')
.Append(path)
.Append(file.Path)
.AppendLine();
}
}