removed console.log which flooded the whole console

This commit is contained in:
Nathan DECHER 2020-04-05 18:31:06 +02:00
parent 2a67ab40ee
commit b12ac2fab9

View file

@ -112,7 +112,6 @@ const handleGamepads={
const handleEvent=(type, evt) => { const handleEvent=(type, evt) => {
for(let handler of handlers) { for(let handler of handlers) {
console.log(type, handler);
let fn=handler[type]; let fn=handler[type];
if(fn) fn(evt); if(fn) fn(evt);
} }