diff options
author | Max Horn | 2010-06-02 00:52:57 +0000 |
---|---|---|
committer | Max Horn | 2010-06-02 00:52:57 +0000 |
commit | 767edc91faebdc1a60e5c8b3764b169dc9807ea5 (patch) | |
tree | 838b131043f177882fe03a7832124e0f8f53b350 /backends/platform/samsungtv | |
parent | c4c63223cc45ce192f8b03f27fff56fcdf56a502 (diff) | |
download | scummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.tar.gz scummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.tar.bz2 scummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.zip |
OSYSTEM: Get rid of kFeatureAutoComputeDirtyRects
svn-id: r49388
Diffstat (limited to 'backends/platform/samsungtv')
-rw-r--r-- | backends/platform/samsungtv/samsungtv.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/backends/platform/samsungtv/samsungtv.cpp b/backends/platform/samsungtv/samsungtv.cpp index 4f0f3a1e3e..aa79b92558 100644 --- a/backends/platform/samsungtv/samsungtv.cpp +++ b/backends/platform/samsungtv/samsungtv.cpp @@ -30,7 +30,6 @@ bool OSystem_SDL_SamsungTV::hasFeature(Feature f) { return (f == kFeatureAspectRatioCorrection) || - (f == kFeatureAutoComputeDirtyRects) || (f == kFeatureCursorHasPalette); } @@ -39,12 +38,6 @@ void OSystem_SDL_SamsungTV::setFeatureState(Feature f, bool enable) { case kFeatureAspectRatioCorrection: setAspectRatioCorrection(enable); break; - case kFeatureAutoComputeDirtyRects: - if (enable) - _modeFlags |= DF_WANT_RECT_OPTIM; - else - _modeFlags &= ~DF_WANT_RECT_OPTIM; - break; default: break; } @@ -56,8 +49,6 @@ bool OSystem_SDL_SamsungTV::getFeatureState(Feature f) { switch (f) { case kFeatureAspectRatioCorrection: return _videoMode.aspectRatioCorrection; - case kFeatureAutoComputeDirtyRects: - return _modeFlags & DF_WANT_RECT_OPTIM; default: return false; } |