Remove console log

This commit is contained in:
Gwilym Inzani 2023-07-05 11:39:57 +01:00 committed by Corwin
parent 7decbccbcd
commit bb47bc21a5
No known key found for this signature in database

View file

@ -93,8 +93,6 @@ export const Mgba: FC<MgbaProps> = ({ gameUrl, volume, controls, paused }) => {
? "Return"
: value.toLowerCase().replace("arrow", "").replace("key", "");
console.log(`Key: ${key} will be ${binding}`);
mgbaModule.current.bindKey(binding, key);
}
}, [controls, gameLoaded]);