diff options
Diffstat (limited to 'xbmc/windowing/gbm/WinSystemGbm.cpp')
-rw-r--r-- | xbmc/windowing/gbm/WinSystemGbm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/windowing/gbm/WinSystemGbm.cpp b/xbmc/windowing/gbm/WinSystemGbm.cpp index 9484f5aef4..12f2da635d 100644 --- a/xbmc/windowing/gbm/WinSystemGbm.cpp +++ b/xbmc/windowing/gbm/WinSystemGbm.cpp @@ -223,7 +223,7 @@ bool CWinSystemGbm::SetFullScreen(bool fullScreen, RESOLUTION_INFO& res, bool bl m_GBM->ReleaseBuffer(); } - int delay = CServiceBroker::GetSettings().GetInt("videoscreen.delayrefreshchange"); + int delay = CServiceBroker::GetSettings()->GetInt("videoscreen.delayrefreshchange"); if (delay > 0) { m_delayDispReset = true; @@ -256,7 +256,7 @@ void CWinSystemGbm::FlipPage(bool rendered, bool videoLayer) bool CWinSystemGbm::UseLimitedColor() { - return CServiceBroker::GetSettings().GetBool(CSettings::SETTING_VIDEOSCREEN_LIMITEDRANGE); + return CServiceBroker::GetSettings()->GetBool(CSettings::SETTING_VIDEOSCREEN_LIMITEDRANGE); } bool CWinSystemGbm::Hide() |