diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-09-22 16:33:01 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-09-22 16:33:01 -0400 |
| commit | 31b01cbb5645cdc71791c85f2607aafbc6568dbc (patch) | |
| tree | 4d3472bb0d26fcf98511b07a0e33c174ea7300ce /MediaBrowser.Controller/Entities/GameSystem.cs | |
| parent | 2d29d903be8af52a953bf847e1f6b168fbb236cc (diff) | |
add fixes for dng images
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/GameSystem.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/GameSystem.cs b/MediaBrowser.Controller/Entities/GameSystem.cs index bbaec14a1..c940b5953 100644 --- a/MediaBrowser.Controller/Entities/GameSystem.cs +++ b/MediaBrowser.Controller/Entities/GameSystem.cs @@ -44,6 +44,14 @@ namespace MediaBrowser.Controller.Entities } } + public override double? GetDefaultPrimaryImageAspectRatio() + { + double value = 16; + value /= 9; + + return value; + } + /// <summary> /// Gets or sets the game system. /// </summary> |
