Browse Source

I shouldn't have committed before compiling

Note to self - compile before committing.
jp9000 11 years ago
parent
commit
6346662f19
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libobs/obs.c

+ 2 - 2
libobs/obs.c

@@ -129,8 +129,8 @@ static bool obs_init_video(struct obs_video_info *ovi)
 	struct video_output_info vi;
 	int errorcode;
 
-	ovi.output_width  &= 0xFFFFFFFC;
-	ovi.output_height &= 0xFFFFFFFE;
+	ovi->output_width  &= 0xFFFFFFFC;
+	ovi->output_height &= 0xFFFFFFFE;
 
 	make_video_info(&vi, ovi);
 	errorcode = video_output_open(&video->video, &vi);