Remove unused "TAStudio states" path
TAStudio prop unused since5bf21e391
, path was still in use untilb1296dd9b
This commit is contained in:
parent
f1ef8d0887
commit
faf4a8b24f
|
@ -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,
|
||||
|
|
|
@ -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", ""),
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue