summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--StarsEx/Starshatter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/StarsEx/Starshatter.cpp b/StarsEx/Starshatter.cpp
index 808e682..0d448f1 100644
--- a/StarsEx/Starshatter.cpp
+++ b/StarsEx/Starshatter.cpp
@@ -593,7 +593,7 @@ Starshatter::SetGameMode(int m)
Clock::GetInstance()->SetTimeCompression(1.0);
Pause(false);
- Print(" Stardate: %.1f\n", StarSystem::GetBaseTime());
+ Print(" Stardate: %.1Lf\n", StarSystem::GetBaseTime());
}
else if (m == PLAN_MODE) {
@@ -604,7 +604,7 @@ Starshatter::SetGameMode(int m)
StopNetGame();
Pause(true);
- Print(" Stardate: %.1f\n", StarSystem::GetBaseTime());
+ Print(" Stardate: %.1Lf\n", StarSystem::GetBaseTime());
}
}
@@ -631,7 +631,7 @@ Starshatter::SetGameMode(int m)
StopNetGame();
}
- Print(" Stardate: %.1f\n", StarSystem::GetBaseTime());
+ Print(" Stardate: %.1Lf\n", StarSystem::GetBaseTime());
Print(" Bitmap Cache Footprint: %d KB\n", Bitmap::CacheMemoryFootprint() / 1024);
paused = true;