remove log statement

This commit is contained in:
Corwin 2024-04-08 03:24:06 +01:00
parent f1ef67ad1e
commit b830410e39
No known key found for this signature in database

View file

@ -14,7 +14,6 @@ export const useFrameSkip = (mgbaModule: MutableRefObject<mGBAEmulator>) => {
const raf = (time: DOMHighResTimeStamp) => {
if (previous) {
const delta = time - previous;
console.log(delta);
smoothedFrameTime = (smoothedFrameTime * 3 + delta) / 4;