ANDROID: Remove again updateEventScale

It was removed in android in #1695 but not in android3d in ResidualVM.
This commit is contained in:
Le Philousophe 2021-11-07 10:52:08 +01:00 committed by Paweł Kołodziejski
parent 5b62141b8f
commit d6f37a161b
4 changed files with 0 additions and 22 deletions

View file

@ -373,13 +373,6 @@ static const Common::KeyCode jkeymap[] = {
Common::KEYCODE_PASTE // AKEYCODE_PASTE
};
void OSystem_Android::updateEventScale(uint32 w, uint32 h) {
if ((h != 0) && (w != 0)) {
_eventScaleY = 100 * 480 / h;
_eventScaleX = 100 * 640 / w;
}
}
void OSystem_Android::pushEvent(int type, int arg1, int arg2, int arg3,
int arg4, int arg5, int arg6) {
Common::Event e;