Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-11-24 17:11:28 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-11-24 17:14:22 +0300
commit0b422900c879226fbab4ac55b2071480e7de5d3c (patch)
treecae0b5ac0bf2cbcd51200248a18d5e7963b60167 /intern/ghost
parentedb2e96cd52e298cd24ee6df2f9281a994492771 (diff)
Fix broken windows 'MessageBox' calls (UI messages).
Reported by Bzzt_Ploink on IRC.
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_ContextWGL.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp
index ee0a1cdc88e..45b67cb91ad 100644
--- a/intern/ghost/intern/GHOST_ContextWGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextWGL.cpp
@@ -927,14 +927,14 @@ GHOST_TSuccess GHOST_ContextWGL::initializeDrawingContext()
" Blender needs a graphics card driver to work correctly.\n"
"* Accessing Blender through a remote connection.\n"
"* Using Blender through a virtual machine.\n\n",
- "The program will now close\n"
- "Blender - Can't detect 3D hardware accelerated Driver!", MB_OK | MB_ICONERROR);
+ "The program will now close Blender - Can't detect 3D hardware accelerated Driver!",
+ MB_OK | MB_ICONERROR);
exit(0);
}
else if (version[0] < '2' || (version[0] == '2' && version[2] < '1')) {
- MessageBox(m_hWnd, "Blender requires a graphics driver with OpenGL 2.1 support\n"
- "The program will now close\n",
- "Blender - Unsupported Graphics Driver!", MB_OK | MB_ICONERROR);
+ MessageBox(m_hWnd, "Blender requires a graphics driver with OpenGL 2.1 support\n",
+ "The program will now close Blender - Unsupported Graphics Driver!",
+ MB_OK | MB_ICONERROR);
exit(0);
}