fix: Prior PR (#8904) has bad path for trace modules

* Fix trace path issue

* another path fix
This commit is contained in:
Martin Guillon
2020-11-12 21:23:03 +01:00
committed by GitHub
parent 64e0aa6a11
commit 1a849f9302
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { queueMacrotask } from '../utils/macrotask-scheduler';
import { FPSCallback } from '../fps-meter/fps-native';
import { getTimeInFrameBase } from './animation-native';
import { Trace } from 'trace';
import { Trace } from '../trace';
export interface FrameRequestCallback {
(time: number): void;

View File

@ -1,4 +1,4 @@
import { Trace } from 'trace';
import { Trace } from '../trace';
import { dispatchToMainThread } from './mainthread-helper';
let scheduled = false;