From f65350b8e9974bfb16d1cf50f66c5b1e4ee3653a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Ferrand?= Date: Fri, 19 May 2017 22:11:09 +0200 Subject: [PATCH] fixed erroneous callback --- js/gamepad-demo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gamepad-demo.js b/js/gamepad-demo.js index 004cfec..595969d 100644 --- a/js/gamepad-demo.js +++ b/js/gamepad-demo.js @@ -59,7 +59,7 @@ class GamepadDemo { break; case 'sequential': default: - callback = this.launchSequentialDemoMode; + callback = this.sequentialModeCallback; this.controlType = 'axis'; this.controlIndex = 0; this.demoUpdateDelay = 1000;