mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
remove log statement
This commit is contained in:
parent
f1ef67ad1e
commit
b830410e39
|
@ -14,7 +14,6 @@ export const useFrameSkip = (mgbaModule: MutableRefObject<mGBAEmulator>) => {
|
||||||
const raf = (time: DOMHighResTimeStamp) => {
|
const raf = (time: DOMHighResTimeStamp) => {
|
||||||
if (previous) {
|
if (previous) {
|
||||||
const delta = time - previous;
|
const delta = time - previous;
|
||||||
console.log(delta);
|
|
||||||
|
|
||||||
smoothedFrameTime = (smoothedFrameTime * 3 + delta) / 4;
|
smoothedFrameTime = (smoothedFrameTime * 3 + delta) / 4;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue