From 5fe128a0477e10dddfe1b20f14a64c1b3d418aed Mon Sep 17 00:00:00 2001 From: James Park Date: Tue, 19 Mar 2019 09:17:15 -0700 Subject: [PATCH] libobs-opengl: Fix bad log string --- libobs-opengl/gl-windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs-opengl/gl-windows.c b/libobs-opengl/gl-windows.c index a26693081..c6c84991b 100644 --- a/libobs-opengl/gl-windows.c +++ b/libobs-opengl/gl-windows.c @@ -532,7 +532,7 @@ void device_enter_context(gs_device_t *device) hdc = device->cur_swap->wi->hdc; if (!wgl_make_current(hdc, device->plat->hrc)) - blog(LOG_ERROR, "device_load_swapchain (GL) failed"); + blog(LOG_ERROR, "device_enter_context (GL) failed"); } void device_leave_context(gs_device_t *device)