Core: Enable GS Debugger with DevMode flag

This commit is contained in:
TellowKrinkle 2021-11-30 01:19:32 -06:00 committed by lightningterror
parent 8d4ffc0713
commit 7cc2437ef7
1 changed files with 4 additions and 2 deletions

View File

@ -475,9 +475,11 @@ void MainEmuFrame::CreateWindowsMenu()
{
m_menuWindow.Append(MenuId_Debug_CreateBlockdump, _("Create &Blockdump"), _("Creates a block dump for debugging purposes."), wxITEM_CHECK);
m_menuWindow.Append(MenuId_Debug_Open, _("&Show Debugger"), wxEmptyString, wxITEM_CHECK);
#if defined(PCSX2_DEVBUILD) || defined(PCSX2_CI)
m_menuWindow.Append(MenuId_GSDump, _("Show &GS Debugger"));
#ifndef PCSX2_CI
if (IsDevBuild || g_Conf->DevMode)
#endif
m_menuWindow.Append(MenuId_GSDump, _("Show &GS Debugger"));
m_menuWindow.Append(&m_MenuItem_Console);
#if defined(__POSIX__)