diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/samsungtv/graphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/samsungtv/graphics.cpp b/backends/platform/samsungtv/graphics.cpp index b49786515c..2e0947f934 100644 --- a/backends/platform/samsungtv/graphics.cpp +++ b/backends/platform/samsungtv/graphics.cpp @@ -516,7 +516,8 @@ void OSystem_SDL_SamsungTV::internUpdateScreen() { } #endif // Finally, blit all our changes to the screen - SDL_UpdateRects(_prehwscreen, _numDirtyRects, _dirtyRectList); + // tv sdl port can not take advantage of dirty rects + //SDL_UpdateRects(_prehwscreen, _numDirtyRects, _dirtyRectList); } SDL_BlitSurface(_prehwscreen, 0, _hwscreen, 0); |