video_thread_wrapper: Fix height return value

Previously thread_get_video_output_size would assign the width to the height output.
This commit is contained in:
Lioncash 2015-04-03 15:21:53 -04:00
parent 4f2547976c
commit 3d6a936dfe

View File

@ -817,7 +817,7 @@ static void thread_get_video_output_size(void *data,
thread_send_cmd(thr, CMD_POKE_GET_VIDEO_OUTPUT_SIZE);
thread_wait_reply(thr, CMD_POKE_GET_VIDEO_OUTPUT_SIZE);
*width = thr->cmd_data.output.width;
*height = thr->cmd_data.output.width;
*height = thr->cmd_data.output.height;
}
static void thread_get_video_output_prev(void *data)