Browse Source

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'

jp9000 11 years ago
parent
commit
e2a1186269
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libobs-opengl/gl-cocoa.m

+ 1 - 1
libobs-opengl/gl-cocoa.m

@@ -222,7 +222,7 @@ void gl_windowinfo_destroy(struct gl_windowinfo *wi)
 
 
 void gl_update(device_t device)
 void gl_update(device_t device)
 {
 {
-	[device->plat->context update]
+	[device->plat->context update];
 }
 }
 
 
 void device_entercontext(device_t device)
 void device_entercontext(device_t device)