Move global driver to bottom of header

This commit is contained in:
twinaphex 2015-01-26 20:45:48 +01:00
parent bf736b53a8
commit d8fd5e14d0

View File

@ -380,8 +380,6 @@ void driver_set_refresh_rate(float hz);
**/
bool driver_update_system_av_info(const struct retro_system_av_info *info);
extern driver_t driver;
/**
* find_driver_index:
* @label : string of driver type to be found.
@ -393,6 +391,8 @@ extern driver_t driver;
* index number of the driver found in the array.
**/
int find_driver_index(const char * label, const char *drv);
extern driver_t driver;
#ifdef __cplusplus
}