diff options
Diffstat (limited to 'backends/platform')
| -rw-r--r-- | backends/platform/samsungtv/graphics.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/platform/samsungtv/graphics.cpp b/backends/platform/samsungtv/graphics.cpp index b5bd3a993f..b49786515c 100644 --- a/backends/platform/samsungtv/graphics.cpp +++ b/backends/platform/samsungtv/graphics.cpp @@ -97,7 +97,9 @@ void OSystem_SDL_SamsungTV::initSize(uint w, uint h, const Graphics::PixelFormat  static void fixupResolutionForAspectRatio(AspectRatio desiredAspectRatio, int &width, int &height) {  	assert(&width != &height); -	if (desiredAspectRatio.isAuto()) +	// FIXME: TV SDL return empty list. However TV accept any resolution +	// Consider list fixed list or make calculation. For now it's disabled. +//	if (desiredAspectRatio.isAuto())  		return;  	int kw = desiredAspectRatio.kw();  | 
