Remove unused "TAStudio states" path

TAStudio prop unused since 5bf21e391, path was still in use until b1296dd9b
This commit is contained in:
YoshiRulz 2022-08-28 03:09:59 +10:00
parent f1ef8d0887
commit faf4a8b24f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
4 changed files with 0 additions and 9 deletions

View File

@ -35,7 +35,6 @@ namespace BizHawk.Client.Common
"Watch (.wch)" => 0x16,
"Debug Logs" => 0x17,
"Macros" => 0x18,
"TAStudio states" => 0x19,
"Multi-Disk Bundles" => 0x1A,
"External Tools" => 0x1B,
"Temp Files" => 0x1C,

View File

@ -182,7 +182,6 @@ namespace BizHawk.Client.Common
new(GLOBAL, "Watch (.wch)", Path.Combine(".", ".")),
new(GLOBAL, "Debug Logs", Path.Combine(".", "")),
new(GLOBAL, "Macros", Path.Combine(".", "Movies", "Macros")),
new(GLOBAL, "TAStudio states", Path.Combine(".", "Movies", "TAStudio states")),
new(GLOBAL, "Multi-Disk Bundles", Path.Combine(".", "")),
new(GLOBAL, "External Tools", Path.Combine(".", "ExternalTools")),
new(GLOBAL, "Temp Files", ""),

View File

@ -180,12 +180,6 @@ namespace BizHawk.Client.Common
return collection.AbsolutePathFor(path, null);
}
public static string TastudioStatesAbsolutePath(this PathEntryCollection collection)
{
var path = collection[PathEntryCollection.GLOBAL, "TAStudio states"].Path;
return collection.AbsolutePathFor(path, null);
}
public static string MultiDiskAbsolutePath(this PathEntryCollection collection)
{
var path = collection.ResolveToolsPath(collection[PathEntryCollection.GLOBAL, "Multi-Disk Bundles"].Path);

View File

@ -26,7 +26,6 @@ namespace BizHawk.Client.EmuHawk
public ITasMovie CurrentTasMovie => MovieSession.Movie as ITasMovie;
public bool IsInMenuLoop { get; private set; }
public string StatesPath => Config.PathEntries.TastudioStatesAbsolutePath();
private readonly List<TasClipboardEntry> _tasClipboard = new List<TasClipboardEntry>();
private const string CursorColumnName = "CursorColumn";