Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit b3f8343

Browse files
authored
fix(android): Update PerformanceStatsImpl.java
Fixed typo in function calls
1 parent 41ac3bb commit b3f8343

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/main/java/nl/skillnation/perfstats/PerformanceStatsImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ public void run() {
9191
// Collect FPS info
9292
mTotalFramesDropped += mFrameCallback.getExpectedNumFrames() - mFrameCallback.getNumFrames();
9393
mTotal4PlusFrameStutters += mFrameCallback.get4PlusFrameStutters();
94-
double fps = mFrameCallback.getFPS();
95-
double jsFps = mFrameCallback.getJSFPS();
94+
double fps = mFrameCallback.getFps();
95+
double jsFps = mFrameCallback.getJsFPS();
9696

9797
// Collect system resource usage
9898
double cpuUsage = 0;

0 commit comments

Comments
 (0)