aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Game.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/Game.cs')
-rw-r--r--MediaBrowser.Controller/Entities/Game.cs18
1 files changed, 1 insertions, 17 deletions
diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs
index 63a04e520..9a787b3d3 100644
--- a/MediaBrowser.Controller/Entities/Game.cs
+++ b/MediaBrowser.Controller/Entities/Game.cs
@@ -25,29 +25,13 @@ namespace MediaBrowser.Controller.Entities
public string GameSystem { get; set; }
/// <summary>
- /// Returns true if the game is combined with other games in the same folder
- /// </summary>
- public bool IsInMixedFolder { get; set; }
-
- /// <summary>
///
/// </summary>
public override string MetaLocation
{
get
{
- var directoryName = System.IO.Path.GetDirectoryName(Path);
-
- if (IsInMixedFolder)
- {
- // It's a file
- var baseMetaPath = System.IO.Path.Combine(directoryName, "metadata");
- var fileName = System.IO.Path.GetFileNameWithoutExtension(Path);
-
- return fileName != null ? System.IO.Path.Combine(baseMetaPath, fileName) : null;
- }
-
- return directoryName;
+ return System.IO.Path.GetDirectoryName(Path);
}
}