From 1471afcfe62903673fd05b0b390095295ebb311d Mon Sep 17 00:00:00 2001 From: raven02 Date: Fri, 22 May 2015 08:17:35 +0800 Subject: [PATCH] D3DGS naming fix --- rpcs3/Gui/D3DGSFrame.cpp | 2 +- rpcs3/Gui/MainFrame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Gui/D3DGSFrame.cpp b/rpcs3/Gui/D3DGSFrame.cpp index e8b22fcd73..b0b86c4ce2 100644 --- a/rpcs3/Gui/D3DGSFrame.cpp +++ b/rpcs3/Gui/D3DGSFrame.cpp @@ -6,7 +6,7 @@ #include "Utilities/Timer.h" D3DGSFrame::D3DGSFrame() - : GSFrame(nullptr, "GSFrame[OpenGL]") + : GSFrame(nullptr, "GSFrame[DirectX 12]") , m_frames(0) { canvas = new wxWindow(this, wxID_ANY); diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index ef725668a4..f583d04ff1 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -475,7 +475,7 @@ void MainFrame::Config(wxCommandEvent& WXUNUSED(event)) cbox_gs_render->Append("Null"); cbox_gs_render->Append("OpenGL"); #if defined(DX12_SUPPORT) - cbox_gs_render->Append("D3D12"); + cbox_gs_render->Append("DirectX 12"); #endif for(int i = 1; i < WXSIZEOF(ResolutionTable); ++i)