From 343a5214634920d296cc9d8734cc4febc8d9885c Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 26 Oct 2017 04:23:34 -0400 Subject: [PATCH] Slightly more direct message in gui.cpp --- src/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui.cpp b/src/gui.cpp index d53f2699..d6e82fb9 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -254,7 +254,7 @@ void guiInit() { glfwWindowHint(GLFW_DOUBLEBUFFER, GLFW_TRUE); gWindow = glfwCreateWindow(640, 480, "", NULL, NULL); if (!gWindow) { - osdialog_message(OSDIALOG_ERROR, OSDIALOG_OK, "Cannot open window with OpenGL 2.0 renderer. Does your graphics card support OpenGL 2.0 or greater? If so, are the latest drivers installed?"); + osdialog_message(OSDIALOG_ERROR, OSDIALOG_OK, "Cannot open window with OpenGL 2.0 renderer. Does your graphics card support OpenGL 2.0 or greater? If so, make sure you have the latest graphics drivers installed."); exit(1); } @@ -274,7 +274,7 @@ void guiInit() { glewExperimental = GL_TRUE; err = glewInit(); if (err != GLEW_OK) { - osdialog_message(OSDIALOG_ERROR, OSDIALOG_OK, "Could not initialize GLEW. Does your graphics card support OpenGL 2.0 or greater? If so, are the latest drivers installed?"); + osdialog_message(OSDIALOG_ERROR, OSDIALOG_OK, "Could not initialize GLEW. Does your graphics card support OpenGL 2.0 or greater? If so, make sure you have the latest graphics drivers installed."); exit(1); }