removed console.log which flooded the whole console

This commit is contained in:
2020-04-05 18:31:06 +02:00
parent 2954e79d98
commit 6e39eb4098
-1
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);
}