They use floats to represent a timer. Here is a program that converts your integers to float:
#include <stdio.h> int main() { int n = 1101004800; int n2 = 1101529088; printf("%f\n", *((float*)&n)); printf("%f\n", *((float*)&n2)); return 0; }
Output:
20.000000 21.000000
Jeremy ruten
source share