From d8fd5e14d03071d6bb2f281cf57c9b74315ff861 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 26 Jan 2015 20:45:48 +0100 Subject: [PATCH] Move global driver to bottom of header --- driver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driver.h b/driver.h index 4de68dee61..b553f7adda 100644 --- a/driver.h +++ b/driver.h @@ -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 }