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
1 changed files with 0 additions and 1 deletions

View File

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