From 6a4ca215ab5472221dfa6150be949c6328112b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Mon, 22 Nov 2021 03:08:30 +0100 Subject: [PATCH] [NTVDM] Log the command line used when starting NTVDM. --- subsystems/mvdm/ntvdm/ntvdm.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/subsystems/mvdm/ntvdm/ntvdm.c b/subsystems/mvdm/ntvdm/ntvdm.c index 4e5cd99a1c0..d7e88cb20ad 100644 --- a/subsystems/mvdm/ntvdm/ntvdm.c +++ b/subsystems/mvdm/ntvdm/ntvdm.c @@ -506,11 +506,15 @@ wmain(INT argc, WCHAR *argv[]) } #endif + DPRINT1("\n\n\n" + "NTVDM - Starting...\n" + "Command Line: '%s'\n" + "\n\n", + GetCommandLineA()); + /* Load the global VDM settings */ LoadGlobalSettings(&GlobalSettings); - DPRINT1("\n\n\nNTVDM - Starting...\n\n\n"); - /* Initialize the console */ if (!ConsoleInit()) {