From 4d1ca4bb763e2e3a0d6ff6f9c9fb6554975e7951 Mon Sep 17 00:00:00 2001 From: Karasuhebi Date: Thu, 18 Jun 2015 13:00:29 -0400 Subject: [PATCH] Changes in title bar: DX -> D3D Changed the name of the Direct3D renderers so they would match the way they are named in GSdx's Plugin Settings window. Also changed a printf to say OpenCL instead of opencl. --- plugins/GSdx/GS.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/GSdx/GS.cpp b/plugins/GSdx/GS.cpp index 13fa91c2fb..6149864133 100644 --- a/plugins/GSdx/GS.cpp +++ b/plugins/GSdx/GS.cpp @@ -233,11 +233,11 @@ static int _GSopen(void** dsp, char* title, int renderer, int threads = -1) #ifdef _WINDOWS case 0: case 1: case 2: case 14: dev = new GSDevice9(); - s_renderer_name = " DX9"; + s_renderer_name = " D3D9"; break; case 3: case 4: case 5: case 15: dev = new GSDevice11(); - s_renderer_name = " DX11"; + s_renderer_name = " D3D11"; break; #endif case 9: case 10: case 11: case 16: @@ -285,7 +285,7 @@ static int _GSopen(void** dsp, char* title, int renderer, int threads = -1) s_gs = new GSRendererCL(); s_renderer_type = " OCL"; #else - printf("GSdx error: opencl is disabled\n"); + printf("GSdx error: OpenCL is disabled\n"); #endif break; }