From b12ea75991c0dd7c8c5ab458b4d0a769216196c4 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Tue, 17 Mar 2015 10:25:21 -0400 Subject: [PATCH] WinRT: another ANGLE/OpenGL-initialization, error messaging tweak --- src/video/winrt/SDL_winrtopengles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/winrt/SDL_winrtopengles.cpp b/src/video/winrt/SDL_winrtopengles.cpp index f16a5173c78cf..48e6cb53d0693 100644 --- a/src/video/winrt/SDL_winrtopengles.cpp +++ b/src/video/winrt/SDL_winrtopengles.cpp @@ -136,7 +136,7 @@ WINRT_GLES_LoadLibrary(_THIS, const char *path) */ _this->egl_data->egl_display = eglGetPlatformDisplayEXT(EGL_PLATFORM_ANGLE_ANGLE, EGL_DEFAULT_DISPLAY, defaultDisplayAttributes); if (!_this->egl_data->egl_display) { - return SDL_SetError("Could not get 10_0 EGL display"); + return SDL_SetError("Could not get 10_0+ EGL display"); } if (_this->egl_data->eglInitialize(_this->egl_data->egl_display, NULL, NULL) != EGL_TRUE)