aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2018-05-04 13:42:46 -0700
committerGitHub <noreply@github.com>2018-05-04 13:42:46 -0700
commit74ebeb38475000e8f9832bf9bdc185535be02555 (patch)
tree46970ff5b2fbdeaacb7b82f4d9d3bb40c9c8d48e
parent23a4f5346a0444cd2ec86130f294f392905dc1c3 (diff)
parent6552efec32cab1071ba0cd2a178075059388c120 (diff)
Merge pull request #13853 from FernetMenta/limited
osx: no limited color range on osx, fix log spam
-rw-r--r--xbmc/windowing/osx/WinSystemOSX.h1
-rw-r--r--xbmc/windowing/osx/WinSystemOSX.mm5
2 files changed, 0 insertions, 6 deletions
diff --git a/xbmc/windowing/osx/WinSystemOSX.h b/xbmc/windowing/osx/WinSystemOSX.h
index e83c589123..01d579aea5 100644
--- a/xbmc/windowing/osx/WinSystemOSX.h
+++ b/xbmc/windowing/osx/WinSystemOSX.h
@@ -58,7 +58,6 @@ public:
virtual bool Hide() override;
virtual bool Show(bool raise = true) override;
virtual void OnMove(int x, int y) override;
- bool UseLimitedColor() override;
virtual std::string GetClipboardText(void) override;
diff --git a/xbmc/windowing/osx/WinSystemOSX.mm b/xbmc/windowing/osx/WinSystemOSX.mm
index 2303756148..3e3dcd9b63 100644
--- a/xbmc/windowing/osx/WinSystemOSX.mm
+++ b/xbmc/windowing/osx/WinSystemOSX.mm
@@ -1701,11 +1701,6 @@ void CWinSystemOSX::OnMove(int x, int y)
HandlePossibleRefreshrateChange();
}
-bool CWinSystemOSX::UseLimitedColor()
-{
- return CServiceBroker::GetSettings().GetBool(CSettings::SETTING_VIDEOSCREEN_LIMITEDRANGE);
-}
-
std::unique_ptr<IOSScreenSaver> CWinSystemOSX::GetOSScreenSaverImpl()
{
return std::unique_ptr<IOSScreenSaver> (new COSScreenSaverOSX);