mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-27 14:23:06 +00:00
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:
parent
4f2547976c
commit
3d6a936dfe
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user