Renamed aspectRatio to aspectRatioCorrection in the SDL backend to match the accessor functions

(don't worry, o reader, for this is the only modification going to the SVN :) )

svn-id: r40226
This commit is contained in:
Bertrand Augereau 2009-05-01 09:09:07 +00:00
parent 912b3f64bb
commit bb2540a4d1
4 changed files with 26 additions and 26 deletions

View file

@ -80,7 +80,7 @@ void OSystem_SDL::fillMouseEvent(Common::Event &event, int x, int y) {
if (!_overlayVisible) {
event.mouse.x /= _videoMode.scaleFactor;
event.mouse.y /= _videoMode.scaleFactor;
if (_videoMode.aspectRatio)
if (_videoMode.aspectRatioCorrection)
event.mouse.y = aspect2Real(event.mouse.y);
}
}