diff options
| -rw-r--r-- | backends/platform/iphone/osys_video.cpp | 10 | 
1 files changed, 0 insertions, 10 deletions
| diff --git a/backends/platform/iphone/osys_video.cpp b/backends/platform/iphone/osys_video.cpp index 2b86c1d1de..a610708478 100644 --- a/backends/platform/iphone/osys_video.cpp +++ b/backends/platform/iphone/osys_video.cpp @@ -208,16 +208,6 @@ void OSystem_IPHONE::drawDirtyRect(const Common::Rect &dirtyRect) {  }  void OSystem_IPHONE::drawDirtyOverlayRect(const Common::Rect &dirtyRect) { -	// int h = dirtyRect.bottom - dirtyRect.top; -	// -	// uint16 *src = (uint16 *)&_overlayBuffer[dirtyRect.top * _screenWidth + dirtyRect.left]; -	// uint16 *dst = &_fullscreen[dirtyRect.top * _screenWidth + dirtyRect.left]; -	// int x = (dirtyRect.right - dirtyRect.left) * 2; -	// for (int y = h; y > 0; y--) { -	// 	memcpy(dst, src, x); -	// 	src += _screenWidth; -	// 	dst += _screenWidth; -	// }  	iPhone_updateOverlayRect(_overlayBuffer, dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom);  } | 
