mirror of https://github.com/PCSX2/pcsx2.git
Core: Enable GS Debugger with DevMode flag
This commit is contained in:
parent
8d4ffc0713
commit
7cc2437ef7
|
@ -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_CreateBlockdump, _("Create &Blockdump"), _("Creates a block dump for debugging purposes."), wxITEM_CHECK);
|
||||||
m_menuWindow.Append(MenuId_Debug_Open, _("&Show Debugger"), wxEmptyString, 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
|
#endif
|
||||||
|
m_menuWindow.Append(MenuId_GSDump, _("Show &GS Debugger"));
|
||||||
|
|
||||||
m_menuWindow.Append(&m_MenuItem_Console);
|
m_menuWindow.Append(&m_MenuItem_Console);
|
||||||
#if defined(__POSIX__)
|
#if defined(__POSIX__)
|
||||||
|
|
Loading…
Reference in New Issue