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.
This commit is contained in:
Karasuhebi 2015-06-18 13:00:29 -04:00
parent ab6f26ff4d
commit 4d1ca4bb76
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}