(Android) Buildfix

This commit is contained in:
twinaphex 2015-09-16 05:45:50 +02:00
parent b29307207f
commit c11b08ed91
3 changed files with 10 additions and 9 deletions

View File

@ -13,6 +13,12 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <EGL/egl.h>
#include <sys/system_properties.h>
#include <formats/image.h>
#include "../../driver.h"
#include "../../general.h"
@ -20,12 +26,7 @@
#include "../video_monitor.h"
#include "../drivers/gl_common.h"
#include <EGL/egl.h>
#include "../../frontend/drivers/platform_android.h"
#include <formats/image.h>
#include <stdint.h>
#include "../../frontend/drivers/platform_linux.h"
/* forward declaration */
int system_property_get(const char *name, char *value);

View File

@ -22,7 +22,7 @@
#include <retro_inline.h>
#include "../../frontend/drivers/platform_android.h"
#include "../../frontend/drivers/platform_linux.h"
#include "../input_autodetect.h"
#include "../input_common.h"
#include "../input_joypad.h"

View File

@ -33,8 +33,8 @@
#include "../git_version.h"
#include "../file_ext.h"
#ifdef ANDROID
#include "../frontend/drivers/platform_android.h"
#ifdef __linux__
#include "../frontend/drivers/platform_linux.h"
#endif
extern unsigned rpl_entry_selection_ptr;