aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/osys_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/iphone/osys_main.cpp')
-rw-r--r--backends/platform/iphone/osys_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/iphone/osys_main.cpp b/backends/platform/iphone/osys_main.cpp
index 71404dcd9e..dd34e95c72 100644
--- a/backends/platform/iphone/osys_main.cpp
+++ b/backends/platform/iphone/osys_main.cpp
@@ -119,7 +119,7 @@ void OSystem_IPHONE::setFeatureState(Feature f, bool enable) {
}
break;
case kFeatureAspectRatioCorrection:
- iPhone_setAspectRatioState(enable);
+ _videoContext->asprectRatioCorrection = enable;
break;
default:
@@ -132,7 +132,7 @@ bool OSystem_IPHONE::getFeatureState(Feature f) {
case kFeatureCursorPalette:
return _mouseCursorPaletteEnabled;
case kFeatureAspectRatioCorrection:
- return iPhone_getAspectRatioState();
+ return _videoContext->asprectRatioCorrection;
default:
return false;