From 5d01db80350ac05e4e03325b6d982f2e46c04f4a Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Wed, 25 Feb 2015 14:09:40 +0100 Subject: Make the message even more clear in case someone does not know what GPU is (we are talking about people who won't have installed a driver - anything is possible) --- intern/ghost/intern/GHOST_ContextWGL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern') diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp index 31b5863f5a1..e9964293991 100644 --- a/intern/ghost/intern/GHOST_ContextWGL.cpp +++ b/intern/ghost/intern/GHOST_ContextWGL.cpp @@ -878,7 +878,7 @@ GHOST_TSuccess GHOST_ContextWGL::initializeDrawingContext() if ((strcmp(vendor, "Microsoft Corporation") == 0 || strcmp(renderer, "GDI Generic") == 0) && version[0] == '1' && version[0] == '1') { - MessageBox(m_hWnd, "Your system does not use GPU acceleration.\n" + MessageBox(m_hWnd, "Your system does not use 3D hardware acceleration.\n" "Such systems can cause stability problems in blender and they are unsupported.\n\n" "This may is caused by:\n" "* A missing or faulty graphics driver installation.\n" @@ -886,7 +886,7 @@ GHOST_TSuccess GHOST_ContextWGL::initializeDrawingContext() "* Accessing blender through a remote connection.\n" "* Using blender through a virtual machine.\n\n" "Disable this message in ", - "Blender - Can't detect GPU accelerated Driver!", MB_OK | MB_ICONWARNING); + "Blender - Can't detect 3D hardware accelerated Driver!", MB_OK | MB_ICONWARNING); } else if (version[0] == '1' && version[2] < '4') { MessageBox(m_hWnd, "The OpenGL version provided by your graphics driver version is too low\n" -- cgit v1.2.3