From fa2ce3f6e7817942bc7019d8f644f0176ba21e77 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Fri, 16 Aug 2019 17:46:34 +0700 Subject: [PATCH] Debugger: correct mupen64plus window caption to find in debug mode. --- src/Debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Debugger.cpp b/src/Debugger.cpp index 2908fd76..2a6dc24f 100644 --- a/src/Debugger.cpp +++ b/src/Debugger.cpp @@ -37,7 +37,7 @@ bool getCursorPos(long & _x, long & _y) if (hWnd == NULL) { wchar_t caption[64]; # ifdef _DEBUG - swprintf(caption, 64, L"%ls debug. Revision %ls", pluginNameW, PLUGIN_REVISION_W); + swprintf(caption, 64, L"mupen64plus: %ls debug. Revision %ls", pluginNameW, PLUGIN_REVISION_W); # else // _DEBUG swprintf(caption, 64, L"%s. Revision %s", pluginName, PLUGIN_REVISION); # endif // _DEBUG