summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/crashlog.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crashlog.cpp b/src/crashlog.cpp
index c5719ad47..8948fec1d 100644
--- a/src/crashlog.cpp
+++ b/src/crashlog.cpp
@@ -28,6 +28,8 @@
#include "language.h"
#include "ai/ai_info.hpp"
+#include "game/game.hpp"
+#include "game/game_info.hpp"
#include "company_base.h"
#include "company_func.h"
@@ -154,6 +156,10 @@ char *CrashLog::LogConfiguration(char *buffer, const char *last) const
buffer += seprintf(buffer, last, " %2i: %s (v%d)\n", (int)c->index, c->ai_info->GetName(), c->ai_info->GetVersion());
}
}
+
+ if (Game::GetInfo() != NULL) {
+ buffer += seprintf(buffer, last, " GS: %s (v%d)\n", Game::GetInfo()->GetName(), Game::GetInfo()->GetVersion());
+ }
buffer += seprintf(buffer, last, "\n");
return buffer;