(gfx/thread_wrapper.h) Change to C-style comments

This commit is contained in:
twinaphex 2014-09-09 04:26:04 +02:00
parent cfd576239d
commit f4332eebbd
1 changed files with 4 additions and 3 deletions

View File

@ -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);