Win32: Fix type in exception message in context.c

This commit is contained in:
Elias Naur 2005-03-02 08:26:36 +00:00
parent 336f2f6a34
commit 8235f7ddf1
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ int findPixelFormatOnDC(JNIEnv *env, HDC hdc, jobject pixel_format, jobject pixe
if (pixelFormatCaps != NULL && !extensions.WGL_ARB_render_texture) {
wglMakeCurrent(saved_current_hdc, saved_current_hglrc);
wglDeleteContext(dummy_hglrc);
throwException(env, "No support for WGL_ARB_multisample");
throwException(env, "No support for WGL_ARB_render_texture");
return -1;
}
pixel_format_id = findPixelFormatARB(env, hdc, &extensions, pixel_format, pixelFormatCaps, use_hdc_bpp, window, pbuffer, double_buffer);