From 6346662f19d512b181fd34ab545ec3b847058292 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 11 Feb 2014 04:24:41 -0700 Subject: [PATCH] I shouldn't have committed before compiling Note to self - compile before committing. --- libobs/obs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libobs/obs.c b/libobs/obs.c index f075b30c9..fd9731ce8 100644 --- a/libobs/obs.c +++ b/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);