current session playtime measurement now uses the app's startup time

This commit is contained in:
minjaesong
2024-07-19 03:14:28 +09:00
parent 14538dd10b
commit dcd75eb642
2 changed files with 5 additions and 1 deletions

View File

@@ -352,7 +352,11 @@ public class App implements ApplicationListener {
public static Thread audioManagerThread;
public static long loadedTime_t;
public static void main(String[] args) {
loadedTime_t = getTIME_T();
long st = System.nanoTime();
long sc = st;