| 75 | const float splashFadePeriod = 45 * 60.0f; |
| 76 | |
| 77 | float curtime() |
| 78 | { |
| 79 | timespec ts; |
| 80 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 81 | return float(ts.tv_sec) + float(ts.tv_nsec & 0xffffffff) / 1000000000.0f; |
| 82 | } |
| 83 | |
| 84 | void DisplayGenericSplash() |
| 85 | { |
no outgoing calls
no test coverage detected