From 92518e22b0d514e7697883e0bd71b1cc0e40bf87 Mon Sep 17 00:00:00 2001 From: goaaats Date: Mon, 20 Jun 2022 18:21:09 +0200 Subject: [PATCH] chore: indicate which messagebox we are waiting for --- Dalamud.Boot/dllmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud.Boot/dllmain.cpp b/Dalamud.Boot/dllmain.cpp index 33646cb99..cd2590090 100644 --- a/Dalamud.Boot/dllmain.cpp +++ b/Dalamud.Boot/dllmain.cpp @@ -88,7 +88,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam, HANDLE hMainThreadContinue) { logging::I("Built at: " __DATE__ "@" __TIME__); if (static_cast(g_startInfo.BootWaitMessageBox) & static_cast(DalamudStartInfo::WaitMessageboxFlags::BeforeInitialize)) - MessageBoxW(nullptr, L"Press OK to continue", L"Dalamud Boot", MB_OK); + MessageBoxW(nullptr, L"Press OK to continue (BeforeInitialize)", L"Dalamud Boot", MB_OK); if (minHookLoaded) { logging::I("Applying fixes..."); @@ -146,7 +146,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam, HANDLE hMainThreadContinue) { // ============================== Dalamud ==================================== // if (static_cast(g_startInfo.BootWaitMessageBox) & static_cast(DalamudStartInfo::WaitMessageboxFlags::BeforeDalamudEntrypoint)) - MessageBoxW(nullptr, L"Press OK to continue", L"Dalamud Boot", MB_OK); + MessageBoxW(nullptr, L"Press OK to continue (BeforeDalamudEntrypoint)", L"Dalamud Boot", MB_OK); if (hMainThreadContinue) { // Let the game initialize.