[Change] Time units.
This commit is contained in:
parent
0ab44366ea
commit
3a4115ca5d
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user