MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / timeGetTime

Function timeGetTime

engine/source/platformAndroid/T2DActivity.cpp:65–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63extern void _AndroidGameInnerLoop();
64
65double timeGetTime() {
66
67 struct timeval tv;
68 gettimeofday(&tv, NULL);
69
70 return ((tv.tv_sec) * 1000.0 + (tv.tv_usec) / 1000.0);
71
72}
73
74void toggleSplashScreen(bool show)
75{

Callers 1

engine_update_frameFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected