From e2a1186269a232bebdd0f5bff4e6ee5163e09ea7 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 31 Dec 2013 03:13:56 -0700 Subject: [PATCH] one of the problems of doing changes for Objective-C on windows is that you can't actually compile your code and test it before commiting, leading to foolish little errors like 'you forgot to put a semicolen at the end of that call' --- libobs-opengl/gl-cocoa.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs-opengl/gl-cocoa.m b/libobs-opengl/gl-cocoa.m index 0e595ee9c..5ccabb04e 100644 --- a/libobs-opengl/gl-cocoa.m +++ b/libobs-opengl/gl-cocoa.m @@ -222,7 +222,7 @@ void gl_windowinfo_destroy(struct gl_windowinfo *wi) void gl_update(device_t device) { - [device->plat->context update] + [device->plat->context update]; } void device_entercontext(device_t device)