diff options
Diffstat (limited to 'Python/emscripten_trampoline.c')
-rw-r--r-- | Python/emscripten_trampoline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/emscripten_trampoline.c b/Python/emscripten_trampoline.c index 975c28eec10..75b98a04723 100644 --- a/Python/emscripten_trampoline.c +++ b/Python/emscripten_trampoline.c @@ -80,7 +80,7 @@ function getPyEMCountArgsPtr() { // To differentiate, we check if the platform is 'MacIntel' (common for Macs and newer iPads) // AND if the device has multi-touch capabilities (navigator.maxTouchPoints > 1) (navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints !== 'undefined' && navigator.maxTouchPoints > 1) - ) + ); if (isIOS) { return 0; } |