From f153ad5877c1f8a4e89549484cdab5f9fe905164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= <13226155+dhrdlicka@users.noreply.github.com> Date: Sun, 24 Aug 2025 21:36:35 +0200 Subject: [PATCH] Add log message when running in portable mode --- src/86box.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/86box.c b/src/86box.c index 5570b5269..a5344f7e9 100644 --- a/src/86box.c +++ b/src/86box.c @@ -1112,6 +1112,10 @@ usage: pclog("#\n# %ls v%ls logfile, created %s\n#\n", EMU_NAME_W, EMU_VERSION_FULL_W, temp); + if (portable_mode) { + pclog("# Portable mode enabled.\n"); + } + pclog("# Emulator path: %s\n", exe_path); pclog("# Global configuration file: %s\n", global_cfg_path);