From f4332eebbd794cca9823137bc03a9973ba982210 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 9 Sep 2014 04:26:04 +0200 Subject: [PATCH] (gfx/thread_wrapper.h) Change to C-style comments --- gfx/thread_wrapper.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gfx/thread_wrapper.h b/gfx/thread_wrapper.h index 8c43a1f02d..835773415b 100644 --- a/gfx/thread_wrapper.h +++ b/gfx/thread_wrapper.h @@ -19,9 +19,10 @@ #include "../driver.h" #include "../boolean.h" -// Starts a video driver in a new thread. -// Access to video driver will be mediated through this driver. -bool rarch_threaded_video_init(const video_driver_t **out_driver, void **out_data, +/* Starts a video driver in a new thread. + * Access to video driver will be mediated through this driver. */ +bool rarch_threaded_video_init( + const video_driver_t **out_driver, void **out_data, const input_driver_t **input, void **input_data, const video_driver_t *driver, const video_info_t *info);