From b8141bbfdca4a09e126d91d4f579b2a940e44118 Mon Sep 17 00:00:00 2001 From: Mason Thompson <72317541+MasonT8198@users.noreply.github.com> Date: Tue, 28 Dec 2021 17:25:09 -0500 Subject: [PATCH] ui: Print OS version to log --- ui/xemu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/xemu.c b/ui/xemu.c index 2558106c3d..966e771126 100644 --- a/ui/xemu.c +++ b/ui/xemu.c @@ -48,6 +48,7 @@ #include "xemu-settings.h" #include "xemu-shaders.h" #include "xemu-version.h" +#include "xemu-os-utils.h" #include "data/xemu_64x64.png.h" @@ -885,6 +886,7 @@ static void sdl2_display_very_early_init(DisplayOptions *o) // by the SDL surface. } + fprintf(stderr, "OS_Version: %s\n", xemu_get_os_info()); fprintf(stderr, "GL_VENDOR: %s\n", glGetString(GL_VENDOR)); fprintf(stderr, "GL_RENDERER: %s\n", glGetString(GL_RENDERER)); fprintf(stderr, "GL_VERSION: %s\n", glGetString(GL_VERSION));