summaryrefslogtreecommitdiffhomepage
path: root/StarsEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-11 00:49:03 +0100
committerAki <please@ignore.pl>2024-03-11 00:49:03 +0100
commitbee3cae04a8789cfdc1688ae6d2d47c387431783 (patch)
tree37a707bd8934e4807607b768e8d0f583baf503d1 /StarsEx
parent088e32554431606e8c6ccf4ee58c08bee0a66817 (diff)
downloadstarshatter-bee3cae04a8789cfdc1688ae6d2d47c387431783.zip
starshatter-bee3cae04a8789cfdc1688ae6d2d47c387431783.tar.gz
starshatter-bee3cae04a8789cfdc1688ae6d2d47c387431783.tar.bz2
Fix format of Stardate dump
Diffstat (limited to 'StarsEx')
-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;