Lua Console - fix Session saving saving the session filename instead of the script filename, fixes #2400
This commit is contained in:
parent
725cee8b62
commit
ad9a04d918
|
@ -110,7 +110,7 @@ namespace BizHawk.Client.Common
|
||||||
sb
|
sb
|
||||||
.Append(file.Enabled ? "1" : "0")
|
.Append(file.Enabled ? "1" : "0")
|
||||||
.Append(' ')
|
.Append(' ')
|
||||||
.Append(path)
|
.Append(file.Path)
|
||||||
.AppendLine();
|
.AppendLine();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue