From eded13a21d30502f04508f60f20c14d27e311cf9 Mon Sep 17 00:00:00 2001 From: sum2012 Date: Sun, 28 Sep 2014 15:55:16 +0800 Subject: [PATCH] Add more information for directx 9 error --- Windows/EmuThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Windows/EmuThread.cpp b/Windows/EmuThread.cpp index 27ef8b92c4..833384b278 100644 --- a/Windows/EmuThread.cpp +++ b/Windows/EmuThread.cpp @@ -132,7 +132,7 @@ unsigned int WINAPI TheThread(void *) Reporting::ReportMessage("Graphics init error: %s", error_string.c_str()); const char *defaultErrorOpenGL = "Failed initializing graphics. Try upgrading your graphics drivers.\n\nWould you like to try switching to DirectX 9?\n\nError message:"; - const char *defaultErrorDirect3D9 = "Failed initializing graphics. Try upgrading your graphics drivers.\n\nWould you like to try switching to OpenGL?\n\nError message:"; + const char *defaultErrorDirect3D9 = "Failed initializing graphics. Try upgrading your graphics drivers and directx 9 runtime.\n\nWould you like to try switching to OpenGL?\n\nError message:"; const char *genericError; int nextBackend = GPU_BACKEND_DIRECT3D9; switch (g_Config.iGPUBackend) {