[Change] Time units.

This commit is contained in:
Allanis 2013-04-22 14:56:12 +01:00
parent 0ab44366ea
commit 3a4115ca5d

View File

@ -20,8 +20,8 @@ char* ltime_pretty(unsigned int t) {
if(t == 0) lt = lephisto_time; if(t == 0) lt = lephisto_time;
else lt = t; else lt = t;
// Galactic Date. // UST (Universal Synchronized Time) - unit is STU (Syncronized Time Unit).
snprintf(str, 128, "GD %d.%03d", snprintf(str, 128, "UST %d.%03d",
lt / (1000*LTIME_UNIT_LENGTH), lt / (1000*LTIME_UNIT_LENGTH),
(lt / (LTIME_UNIT_LENGTH)) % 1000); (lt / (LTIME_UNIT_LENGTH)) % 1000);