From 65a45740d21ddecdfc65dd4c119e385e78b92da7 Mon Sep 17 00:00:00 2001 From: icex2 Date: Fri, 21 Aug 2020 17:54:12 +0200 Subject: [PATCH] launcher: Log OS version on startup --- src/main/launcher/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/launcher/main.c b/src/main/launcher/main.c index 5330504..4424381 100644 --- a/src/main/launcher/main.c +++ b/src/main/launcher/main.c @@ -20,6 +20,7 @@ #include "util/fs.h" #include "util/log.h" #include "util/mem.h" +#include "util/os.h" #include "util/str.h" /* Gratuitous API changes orz */ @@ -208,6 +209,8 @@ int main(int argc, const char **argv) log_to_external( log_body_misc, log_body_info, log_body_warning, log_body_fatal); + os_version_log(); + /* Load game DLL */ module_context_init(&module, options.module);